Alien-SmokeQt

 view release on metacpan or  search on metacpan

cmake/modules/BasicFindPackageVersion.cmake.in  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
# This is a very basic file for the new style find_package() search mode,
# i.e. Config-mode. It is used by MACRO_WRITE_BASIC_CMAKE_VERSION_FILE() from
# MacroWriteBasicCMakeVersionFile.cmake.
# In this mode find_package() searches for a <package>Config.cmake
# file and an associated <package>Version.cmake file, which it loads to check
# the version number.
# This file can be used with configure_file() to generate such a file for a project
# with very basic logic.
# It sets PACKAGE_VERSION_EXACT if the current version string and the requested
# version string are exactly the same and it sets PACKAGE_VERSION_COMPATIBLE
# if the current version is >= requested version.

generator/parser/stringhelpers.h  view on Meta::CPAN

49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
void CPPPARSER_EXPORT skipFunctionArguments(QString str, QStringList& skippedArguments, int& argumentsStart );
 
/**
 * Removes white space at the beginning and end, and replaces contiguous inner white-spaces with single white-spaces. Newlines are treated as whitespaces, the returned text will have no more newlines.
 * */
QString CPPPARSER_EXPORT reduceWhiteSpace(QString str);
 
QString CPPPARSER_EXPORT stripFinalWhitespace(QString str);
 
/**
 * Fills all c++-style comments  within the given code with the given 'replacement' character
 * Newlines are preserved.
 * */
QString CPPPARSER_EXPORT clearComments( QString str, QChar replacement = ' ' );
/**
 * Fills all c++-strings within the given code with the given 'replacement' character
 * Comments should have been removed before.
 * */
QString CPPPARSER_EXPORT clearStrings( QString str, QChar replacement = ' ' );
 
/**

smoke/qt/qsci/qscintilla2_includes.h  view on Meta::CPAN

32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <qscilexersql.h>
#include <qscilexertcl.h>
#include <qscilexertex.h>
#include <qscilexervhdl.h>
#include <qscilexerxml.h>
#include <qscilexeryaml.h>
#include <qscimacro.h>
#include <qsciprinter.h>
#include <qsciscintillabase.h>
#include <qsciscintilla.h>
#include <qscistyledtext.h>
#include <qscistyle.h>
 
#include <qvariant.h>

smoke/qt/qtcore/tests/test.cpp  view on Meta::CPAN

595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
#include "qstringlist.h"
 
int main(int argc, char ** argv)
{
  QStringList foo;
}
 
#endif
 
#ifdef TEST_QT_NO_STYLE_PLASTIQUE
#include "QtGui/qplastiquestyle.h"
 
int main(int argc, char ** argv)
{
  QPlastiqueStyle foo;
}
 
#endif
 
#ifdef TEST_QT_NO_STYLE_S60
#include "QtGui/qs60style.h"
 
int main(int argc, char ** argv)
{
  QS60Style foo;
}
 
#endif
 
#ifdef TEST_QT_NO_STYLE_WINDOWSXP
#include "QtGui/qwindowsxpstyle.h"
 
int main(int argc, char ** argv)
{
  QWindowsXPStyle foo;
}
 
#endif
 
#ifdef TEST_QT_NO_STYLE_WINDOWS
#include "QtGui/qwindowsstyle.h"
 
int main(int argc, char ** argv)
{
  QWindowsStyle foo;
}
 
#endif
 
#ifdef TEST_QT_NO_STYLE_MAC
#include "QtGui/macstyle.h"
 
int main(int argc, char ** argv)
{
  QMacStyle foo;
}
 
#endif
 
#ifdef TEST_QT_NO_STYLE_CLEANLOOKS
#include "QtGui/qcleanlooksstyle.h"
 
int main(int argc, char ** argv)
{
  QCleanlooksStyle foo;
}
 
#endif
 
#ifdef TEST_QT_NO_TABBAR
#include "QtGui/qtabbar.h"



( run in 0.369 second using v1.01-cache-2.11-cpan-9b1e4054eb1 )