Changeset 77f8bff
- Timestamp:
- 06/24/11 00:38:42 (12 years ago)
- Branches:
- master, qt5
- Children:
- f41638e
- Parents:
- c040814
- Files:
-
- 6 added
- 6 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
README
rc040814 r77f8bff 59 59 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 60 60 61 src/icons/*: 62 All icons are taken from the Debian package gnome-icon-theme, which contains 63 the following notice (as of 2011-06-24): 61 64 65 Copyright © 2002-2008: 66 Ulisse Perusin <uli.peru@gmail.com> 67 Riccardo Buzzotta <raozuzu@yahoo.it> 68 Josef Vybíral <cornelius@vybiral.info> 69 Hylke Bons <h.bons@student.rug.nl> 70 Ricardo González <rick@jinlabs.com> 71 Lapo Calamandrei <calamandrei@gmail.com> 72 Rodney Dawes <dobey@novell.com> 73 Luca Ferretti <elle.uca@libero.it> 74 Tuomas Kuosmanen <tigert@gimp.org> 75 Andreas Nilsson <nisses.mail@home.se> 76 Jakub Steiner <jimmac@novell.com> 62 77 63 //! TODO 64 65 Files add.png, reload.png, remove.png in src/icons/ directory 66 are taken from Ubuntu package gnome-icon-theme. Copyright notice 67 for them copied here: 68 69 > This package was debianized by Takuo KITAME <kitame@debian.org> on 70 > Fri, 17 Jan 2003 14:57:28 +0900. 71 > 72 > It was downloaded from <http://download.gnome.org/sources/gnome-icon-theme/> 73 > 74 > Copyright © 2002-2008: 75 > Ulisse Perusin <uli.peru@gmail.com> 76 > Riccardo Buzzotta <raozuzu@yahoo.it> 77 > Josef Vybíral <cornelius@vybiral.info> 78 > Hylke Bons <h.bons@student.rug.nl> 79 > Ricardo González <rick@jinlabs.com> 80 > Lapo Calamandrei <calamandrei@gmail.com> 81 > Rodney Dawes <dobey@novell.com> 82 > Luca Ferretti <elle.uca@libero.it> 83 > Tuomas Kuosmanen <tigert@gimp.org> 84 > Andreas Nilsson <nisses.mail@home.se> 85 > Jakub Steiner <jimmac@novell.com> 86 78 GNOME icon theme is distributed under the terms of either 79 GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. 87 80 88 81 -
TODO
rc040814 r77f8bff 23 23 - .pro: maybe play with install target 24 24 - manpage 25 ~/.local/share/data/Toastfreeware/ConfClerk/ConfClerk.sqlite 26 ~/.config/Toastfreeware/ConfClerk.conf 25 27 26 28 -- … … 30 32 - DebConf (2010): http://penta.debconf.org/dc10_schedule/schedule.en.xml 31 33 - 27C3: http://events.ccc.de/congress/2010/Fahrplan/schedule.en.xml 32 33 ~/.local/share/data/Toastfreeware/ConfClerk/ConfClerk.sqlite34 ~/.config/Toastfreeware/ConfClerk.conf -
src/gui/conferenceeditor.ui
rc040814 r77f8bff 223 223 <property name="icon"> 224 224 <iconset resource="../icons.qrc"> 225 <normaloff>:/icons/ compassBig.png</normaloff>:/icons/compassBig.png</iconset>225 <normaloff>:/icons/applications-internet.png</normaloff>:/icons/applications-internet.png</iconset> 226 226 </property> 227 227 <property name="flat"> -
src/gui/eventdialog.cpp
rc040814 r77f8bff 52 52 if(event.isFavourite()) 53 53 { 54 favouriteButton->setIcon(QIcon(":/icons/ favourite-onBig.png"));54 favouriteButton->setIcon(QIcon(":/icons/emblem-new.png")); 55 55 } 56 56 57 57 if(event.hasAlarm()) 58 58 { 59 alarmButton->setIcon(QIcon(":/icons/a larm-onBig.png"));59 alarmButton->setIcon(QIcon(":/icons/appointment-soon.png")); 60 60 } 61 61 } … … 69 69 { 70 70 event.setFavourite(false); 71 favouriteButton->setIcon(QIcon(":/icons/ favourite-offBig.png"));71 favouriteButton->setIcon(QIcon(":/icons/emblem-new-off.png")); 72 72 } 73 73 else 74 74 { 75 75 event.setFavourite(true); 76 favouriteButton->setIcon(QIcon(":/icons/ favourite-onBig.png"));76 favouriteButton->setIcon(QIcon(":/icons/emblem-new.png")); 77 77 } 78 78 event.update("favourite"); … … 102 102 { 103 103 event.setHasAlarm(false); // update DB 104 alarmButton->setIcon(QIcon(":/icons/a larm-offBig.png"));104 alarmButton->setIcon(QIcon(":/icons/appointment-soon-off.png")); 105 105 #ifdef MAEMO 106 106 // remove alarm from the 'alarmd' alrms list … … 113 113 { 114 114 event.setHasAlarm(true); 115 alarmButton->setIcon(QIcon(":/icons/a larm-onBig.png"));115 alarmButton->setIcon(QIcon(":/icons/appointment-soon.png")); 116 116 #ifdef MAEMO 117 117 // add alarm to the 'alarmd' -
src/gui/eventdialog.ui
rc040814 r77f8bff 274 274 <property name="icon"> 275 275 <iconset resource="../icons.qrc"> 276 <normaloff>:/icons/a larm-offBig.png</normaloff>:/icons/alarm-offBig.png</iconset>276 <normaloff>:/icons/appointment-soon-off.png</normaloff>:/icons/appointment-soon-off.png</iconset> 277 277 </property> 278 278 </widget> … … 285 285 <property name="icon"> 286 286 <iconset resource="../icons.qrc"> 287 <normaloff>:/icons/ favourite-offBig.png</normaloff>:/icons/favourite-offBig.png</iconset>287 <normaloff>:/icons/emblem-new-off.png</normaloff>:/icons/emblem-new-off.png</iconset> 288 288 </property> 289 289 </widget> -
src/icons.qrc
rc040814 r77f8bff 6 6 <file>icons/fosdem.png</file> 7 7 <file>icons/brain-alone.png</file> 8 <file>icons/a larm-offBig.png</file>9 <file>icons/a larm-onBig.png</file>10 <file>icons/ compassBig.png</file>11 <file>icons/ favourite-offBig.png</file>12 <file>icons/ favourite-onBig.png</file>13 <file>icons/ exclamation.png</file>8 <file>icons/appointment-soon-off.png</file> 9 <file>icons/appointment-soon.png</file> 10 <file>icons/applications-internet.png</file> 11 <file>icons/emblem-new-off.png</file> 12 <file>icons/emblem-new.png</file> 13 <file>icons/dialog-warning.png</file> 14 14 <file>icons/search.png</file> 15 15 </qresource> -
src/mvc/delegate.cpp
rc040814 r77f8bff 364 364 // FAVOURITE ICONs 365 365 // on 366 mControls.insert(FavouriteControlOn, new Control(FavouriteControlOn, QString(":icons/ favourite-onBig.png"), NULL));366 mControls.insert(FavouriteControlOn, new Control(FavouriteControlOn, QString(":icons/emblem-new.png"), NULL)); 367 367 // off 368 mControls.insert(FavouriteControlOff, new Control(FavouriteControlOff, QString(":icons/ favourite-offBig.png"), NULL));368 mControls.insert(FavouriteControlOff, new Control(FavouriteControlOff, QString(":icons/emblem-new-off.png"), NULL)); 369 369 370 370 #ifdef MAEMO … … 372 372 // on 373 373 mControls.insert(AlarmControlOn, 374 new Control(AlarmControlOn, QString(":icons/a larm-onBig.png"), mControls[FavouriteControlOn]));374 new Control(AlarmControlOn, QString(":icons/appointment-soon.png"), mControls[FavouriteControlOn])); 375 375 // off 376 376 mControls.insert(AlarmControlOff, 377 new Control(AlarmControlOff, QString(":icons/a larm-offBig.png"), mControls[FavouriteControlOff]));377 new Control(AlarmControlOff, QString(":icons/appointment-soon-off.png"), mControls[FavouriteControlOff])); 378 378 379 379 // MAP ICON 380 380 mControls.insert(MapControl, 381 new Control(MapControl, QString(":icons/ compassBig.png"), mControls[AlarmControlOn]));381 new Control(MapControl, QString(":icons/applications-internet.png"), mControls[AlarmControlOn])); 382 382 #else 383 383 // MAP ICON 384 384 mControls.insert(MapControl, 385 new Control(MapControl, QString(":icons/ compassBig.png"), mControls[FavouriteControlOn]));385 new Control(MapControl, QString(":icons/applications-internet.png"), mControls[FavouriteControlOn])); 386 386 #endif 387 387 388 388 // WARNING ICON 389 389 mControls.insert(WarningControl, 390 new Control(WarningControl, QString(":icons/ exclamation.png"), mControls[MapControl]));390 new Control(WarningControl, QString(":icons/dialog-warning.png"), mControls[MapControl])); 391 391 } 392 392
Note: See TracChangeset
for help on using the changeset viewer.