Changeset 5549
- Timestamp:
- 10/04/07 14:05:45 (14 months ago)
- Location:
- branches/qt-gui_qt4
- Files:
-
- 1 added
- 5 modified
- 1 moved
-
share/icons/kde/kde.icons (modified) (1 diff)
-
share/icons/kde/textcolor.png (added)
-
src/config/iconmanager.cpp (modified) (2 diffs)
-
src/config/iconmanager.h (modified) (1 diff)
-
src/dialogs/chatdlg.cpp (modified) (2 diffs)
-
src/userevents/usersendcommon.cpp (modified) (2 diffs)
-
src/xpm/barTextColor.xpm (moved) (moved from branches/qt-gui_qt4/src/xpm/chatChangeFg.xpm) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/qt-gui_qt4/share/icons/kde/kde.icons
r5547 r5549 32 32 GPGKey = gpgkey.png 33 33 MultipleRec = multiplerec.png 34 TextColor = textcolor.png -
branches/qt-gui_qt4/src/config/iconmanager.cpp
r5547 r5549 30 30 31 31 #include "xpm/barMultipleRec.xpm" 32 #include "xpm/barTextColor.xpm" 32 33 #include "xpm/history.xpm" 33 34 #include "xpm/info.xpm" … … 170 171 // Toolbar icons 171 172 LOAD2_ICON("MultipleRec", MultipleRecIcon, barMultipleRec_xpm); 173 LOAD2_ICON("TextColor", TextColorIcon, barTextColor_xpm); 172 174 173 175 #undef LOAD_ICON -
branches/qt-gui_qt4/src/config/iconmanager.h
r5547 r5549 87 87 // Toolbar icons 88 88 MultipleRecIcon, 89 TextColorIcon, 89 90 }; 90 91 -
branches/qt-gui_qt4/src/dialogs/chatdlg.cpp
r5478 r5549 83 83 #include "xpm/chatBeep.xpm" 84 84 #include "xpm/chatIgnore.xpm" 85 #include "xpm/chatChangeFg.xpm"86 85 #include "xpm/chatChangeBg.xpm" 87 86 … … 216 215 barChat->addSeparator(); 217 216 218 tbtFg = barChat->addAction( QPixmap(chatChangeFg_xpm), tr("Foreground color"));217 tbtFg = barChat->addAction(IconManager::instance()->getIcon(IconManager::TextColorIcon), tr("Foreground color")); 219 218 tbtFg->setToolTip(tr("Changes the foreground color")); 220 219 mnuFg = new QMenu(); -
branches/qt-gui_qt4/src/userevents/usersendcommon.cpp
r5547 r5549 66 66 #include "usersendurlevent.h" 67 67 68 #include "xpm/chatChangeFg.xpm"69 68 #include "xpm/chatChangeBg.xpm" 70 69 #include "xpm/sendThroughServer.xpm" … … 201 200 pushToolTip(myEmoticon, tr("Insert smileys")); 202 201 203 myForeColor = myToolBar->addAction(QPixmap(chatChangeFg_xpm), "Text Color...", this, SLOT(slotSetForegroundICQColor())); 202 myForeColor = myToolBar->addAction(iconman->getIcon(IconManager::TextColorIcon), "Text Color...", 203 this, SLOT(slotSetForegroundICQColor())); 204 204 myForeColor->setShortcut(Qt::ALT + Qt::Key_T); 205 205 pushToolTip(myForeColor, tr("Change text color")); 206 206 207 myBackColor = myToolBar->addAction(QPixmap(chatChangeBg_xpm), "Background Color...", this, SLOT(slotSetBackgroundICQColor())); 207 myBackColor = myToolBar->addAction(QPixmap(chatChangeBg_xpm), "Background Color...", 208 this, SLOT(slotSetBackgroundICQColor())); 208 209 myBackColor->setShortcut(Qt::ALT + Qt::Key_B); 209 210 pushToolTip(myBackColor, tr("Change background color")); -
branches/qt-gui_qt4/src/xpm/barTextColor.xpm
r4526 r5549 1 1 /* XPM */ 2 static const char * chatChangeFg_xpm[] = {2 static const char * barTextColor_xpm[] = { 3 3 "16 16 49 1", 4 4 " c None",
