diff options
author | Timothy Pearson <[email protected]> | 2012-10-30 22:42:44 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-10-30 22:42:44 -0500 |
commit | 0836d4649ca26cc4e6e867ca5a4a3eafd995f807 (patch) | |
tree | 4b4a28e15a3be4a17fdf5025a46ff0f104fd91d8 /src/kernel/qapplication.cpp | |
parent | 970116b129a0dfd4ac8e90f1788ad7e81e3f6d71 (diff) | |
download | tqt3-0836d4649ca26cc4e6e867ca5a4a3eafd995f807.tar.gz tqt3-0836d4649ca26cc4e6e867ca5a4a3eafd995f807.zip |
Automated update from Qt3
Diffstat (limited to 'src/kernel/qapplication.cpp')
-rw-r--r-- | src/kernel/qapplication.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp index 71b87ffe0..a552c236c 100644 --- a/src/kernel/qapplication.cpp +++ b/src/kernel/qapplication.cpp @@ -1847,6 +1847,37 @@ TQPalette TQApplication::palette(const TQWidget* w) return *app_pal; } +TQPalette TQApplication::palette(TQStringList objectTypeList) +{ +#if defined(QT_CHECK_STATE) + if ( !tqApp ) + tqWarning( "TQApplication::palette: This function can only be " + "called after the TQApplication object has been created" ); +#endif + if ( !app_pal ) { + if ( !tqt_std_pal ) + tqt_create_std_palette(); + app_pal = new TQPalette( *tqt_std_pal ); + tqt_fix_tooltips(); + } + + if ( (objectTypeList.count() > 0) && app_palettes ) { + TQPalette* wp = app_palettes->find( objectTypeList[objectTypeList.count()-1] ); + if ( wp ) { + return *wp; + } + TQAsciiDictIterator<TQPalette> it( *app_palettes ); + const char* name; + while ( (name=it.currentKey()) != 0 ) { + if ( objectTypeList.contains(name) ) { + return *it.current(); + } + ++it; + } + } + return *app_pal; +} + /*! Changes the default application palette to \a palette. If \a informWidgets is TRUE, then existing widgets are informed about the |