Changeset 5547
- Timestamp:
- 10/04/07 13:15:05 (14 months ago)
- Location:
- branches/qt-gui_qt4
- Files:
-
- 1 added
- 4 modified
- 1 moved
-
share/icons/kde/kde.icons (modified) (1 diff)
-
share/icons/kde/multiplerec.png (added)
-
src/config/iconmanager.cpp (modified) (2 diffs)
-
src/config/iconmanager.h (modified) (1 diff)
-
src/userevents/usersendcommon.cpp (modified) (2 diffs)
-
src/xpm/barMultipleRec.xpm (moved) (moved from branches/qt-gui_qt4/src/xpm/multipleRecipients.xpm) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/qt-gui_qt4/share/icons/kde/kde.icons
r4629 r5547 31 31 MSNOccupied = msn_occupied.png 32 32 GPGKey = gpgkey.png 33 MultipleRec = multiplerec.png -
branches/qt-gui_qt4/src/config/iconmanager.cpp
r5546 r5547 29 29 #include "gui-defines.h" 30 30 31 #include "xpm/barMultipleRec.xpm" 31 32 #include "xpm/history.xpm" 32 33 #include "xpm/info.xpm" … … 157 158 158 159 // General icons 159 LOAD2_ICON("SecureOff", SecureOffIcon, secure_off_xpm);160 LOAD2_ICON("SecureOn", SecureOnIcon, secure_on_xpm);161 LOAD2_ICON("History", HistoryIcon, history_xpm);162 LOAD2_ICON("Info", InfoIcon, info_xpm);163 LOAD2_ICON("Remove", RemoveIcon, remove_xpm);164 LOAD2_ICON("Search", SearchIcon, search_xpm);160 LOAD2_ICON("SecureOff", SecureOffIcon, secure_off_xpm); 161 LOAD2_ICON("SecureOn", SecureOnIcon, secure_on_xpm); 162 LOAD2_ICON("History", HistoryIcon, history_xpm); 163 LOAD2_ICON("Info", InfoIcon, info_xpm); 164 LOAD2_ICON("Remove", RemoveIcon, remove_xpm); 165 LOAD2_ICON("Search", SearchIcon, search_xpm); 165 166 #ifdef HAVE_LIBGPGME 166 167 LOAD2_ICON("GPGKey", GpgKeyIcon, pixKeyEnabled_xpm); 167 168 #endif 169 170 // Toolbar icons 171 LOAD2_ICON("MultipleRec", MultipleRecIcon, barMultipleRec_xpm); 168 172 169 173 #undef LOAD_ICON -
branches/qt-gui_qt4/src/config/iconmanager.h
r5546 r5547 84 84 GpgKeyEnabledIcon, 85 85 GpgKeyDisabledIcon, 86 87 // Toolbar icons 88 MultipleRecIcon, 86 89 }; 87 90 -
branches/qt-gui_qt4/src/userevents/usersendcommon.cpp
r5528 r5547 68 68 #include "xpm/chatChangeFg.xpm" 69 69 #include "xpm/chatChangeBg.xpm" 70 #include "xpm/multipleRecipients.xpm"71 70 #include "xpm/sendThroughServer.xpm" 72 71 #include "xpm/smile.xpm" … … 190 189 chkUrgent->setCheckable(true); 191 190 192 chkMass = myToolBar->addAction( QPixmap(multipleRecipients_xpm), tr("Multiple Recipients"));191 chkMass = myToolBar->addAction(iconman->getIcon(IconManager::MultipleRecIcon), tr("Multiple Recipients")); 193 192 chkMass->setShortcut(Qt::ALT + Qt::Key_U); 194 193 pushToolTip(chkMass, tr("Multiple recipients")); -
branches/qt-gui_qt4/src/xpm/barMultipleRec.xpm
r5228 r5547 1 1 /* XPM */ 2 static const char * multipleRecipients_xpm[] = {2 static const char *barMultipleRec_xpm[] = { 3 3 /* columns rows colors chars-per-pixel */ 4 4 "16 16 14 1",
