Use oxygen icons
|
@ -1,8 +1,9 @@
|
|||
v0.3 (27/04/2012)
|
||||
v0.3 (05/05/2012)
|
||||
** User **
|
||||
New interface in Qt
|
||||
Use BDD file from .local/share/kisscount
|
||||
Use libkchart for graphics
|
||||
Use oxygen icons
|
||||
New account attribute : hidden
|
||||
Description is now auto-completed
|
||||
Snapshot feature
|
||||
|
|
Before Width: | Height: | Size: 18 KiB |
|
@ -1,2 +1,2 @@
|
|||
http://www.iconarchive.com/category/application-icons.html
|
||||
http://www.webidev.com/fr/WebiInscrit
|
||||
http://www.oxygen-icons.org/
|
||||
|
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 533 B |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 592 B |
Before Width: | Height: | Size: 16 KiB |
|
@ -241,7 +241,7 @@ QPushButton* AccountPanel::GetButton()
|
|||
{
|
||||
if (!_KissButton)
|
||||
{
|
||||
_KissButton = new QPushButton(QIcon(ACCOUNT_ICON), "", this);
|
||||
_KissButton = new QPushButton(QIcon(USER_ICON), "", this);
|
||||
_KissButton->setFixedSize(128, 128);
|
||||
_KissButton->setIconSize(QSize(128, 128));
|
||||
}
|
||||
|
|
|
@ -32,17 +32,17 @@ namespace view {
|
|||
#define DEFAULT_FONT(font_name) QFont font_name(view::DEFAULT_FONT_NAME, view::DEFAULT_FONT_SIZE);
|
||||
};
|
||||
|
||||
#define DELETE_ICON RESSOURCES_ROOT "icons/process-stop.png"
|
||||
#define CHECKED_ICON RESSOURCES_ROOT "icons/tick-icon.png"
|
||||
#define ACCOUNT_ICON RESSOURCES_ROOT "icons/administrator-icon.png"
|
||||
#define STATS_ICON RESSOURCES_ROOT "icons/chart-icon.png"
|
||||
#define SEARCH_ICON RESSOURCES_ROOT "icons/Search-icon.png"
|
||||
#define PREFS_ICON RESSOURCES_ROOT "icons/options-icon.png"
|
||||
#define IMPORT_ICON RESSOURCES_ROOT "icons/import-icon.png"
|
||||
#define EXPORT_ICON RESSOURCES_ROOT "icons/export-icon.png"
|
||||
#define CHANGE_USER_ICON RESSOURCES_ROOT "icons/Clients-icon.png"
|
||||
#define ABOUT_ICON RESSOURCES_ROOT "icons/windows-users-icon.png"
|
||||
#define QUIT_ICON RESSOURCES_ROOT "icons/system-log-out.png"
|
||||
#define DELETE_ICON RESSOURCES_ROOT "icons/delete.png"
|
||||
#define CHECKED_ICON RESSOURCES_ROOT "icons/check.png"
|
||||
#define USER_ICON RESSOURCES_ROOT "icons/user.png"
|
||||
#define STATS_ICON RESSOURCES_ROOT "icons/charts.png"
|
||||
#define SEARCH_ICON RESSOURCES_ROOT "icons/search.png"
|
||||
#define PREFS_ICON RESSOURCES_ROOT "icons/preferences.png"
|
||||
#define IMPORT_ICON RESSOURCES_ROOT "icons/import.png"
|
||||
#define EXPORT_ICON RESSOURCES_ROOT "icons/export.png"
|
||||
#define CHANGE_USER_ICON RESSOURCES_ROOT "icons/switch_user.png"
|
||||
#define ABOUT_ICON RESSOURCES_ROOT "icons/about.png"
|
||||
#define QUIT_ICON RESSOURCES_ROOT "icons/exit.png"
|
||||
|
||||
#define LANG_ROOT RESSOURCES_ROOT "po/"
|
||||
|
||||
|
|