VitaShell/theme.h

99 lines
2.9 KiB
C
Raw Permalink Normal View History

2016-08-27 10:49:03 +00:00
/*
2017-10-13 10:42:36 +00:00
VitaShell
2017-12-30 10:43:37 +00:00
Copyright (C) 2015-2018, TheFloW
2016-08-27 10:49:03 +00:00
2017-10-13 10:42:36 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2016-08-27 10:49:03 +00:00
2017-10-13 10:42:36 +00:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2016-08-27 10:49:03 +00:00
2017-10-13 10:42:36 +00:00
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-08-27 10:49:03 +00:00
*/
#ifndef __THEME_H__
#define __THEME_H__
2016-09-08 20:09:31 +00:00
// Shell colors
2016-08-27 10:49:03 +00:00
extern int BACKGROUND_COLOR;
extern int TITLE_COLOR;
extern int PATH_COLOR;
extern int DATE_TIME_COLOR;
2016-09-08 20:09:31 +00:00
2016-10-31 18:35:25 +00:00
// Settings colors
extern int SETTINGS_MENU_COLOR;
extern int SETTINGS_MENU_FOCUS_COLOR;
extern int SETTINGS_MENU_TITLE_COLOR;
extern int SETTINGS_MENU_ITEM_COLOR;
extern int SETTINGS_MENU_OPTION_COLOR;
2016-09-08 20:09:31 +00:00
// File browser colors
2016-08-27 10:49:03 +00:00
extern int FOCUS_COLOR;
extern int FILE_COLOR;
2016-09-09 17:50:19 +00:00
extern int SFO_COLOR;
extern int TXT_COLOR;
2016-08-27 10:49:03 +00:00
extern int FOLDER_COLOR;
extern int IMAGE_COLOR;
extern int ARCHIVE_COLOR;
extern int SCROLL_BAR_COLOR;
extern int SCROLL_BAR_BG_COLOR;
extern int MARKED_COLOR;
extern int FILE_SYMLINK_COLOR;
extern int FOLDER_SYMLINK_COLOR;
2016-09-08 20:09:31 +00:00
// Context menu colors
extern int CONTEXT_MENU_TEXT_COLOR;
extern int CONTEXT_MENU_FOCUS_COLOR;
2016-08-27 10:49:03 +00:00
extern int CONTEXT_MENU_COLOR;
extern int CONTEXT_MENU_MORE_COLOR;
2016-09-08 20:09:31 +00:00
extern int INVISIBLE_COLOR;
// Dialog colors
extern int DIALOG_COLOR;
extern int DIALOG_BG_COLOR;
2016-08-27 10:49:03 +00:00
extern int PROGRESS_BAR_COLOR;
extern int PROGRESS_BAR_BG_COLOR;
2016-09-08 20:09:31 +00:00
// Hex editor colors
extern int HEX_COLOR;
2016-08-27 10:49:03 +00:00
extern int HEX_OFFSET_COLOR;
extern int HEX_NIBBLE_COLOR;
2016-09-08 20:09:31 +00:00
// Text editor colors
extern int TEXT_COLOR;
extern int TEXT_FOCUS_COLOR;
2016-09-07 18:53:10 +00:00
extern int TEXT_LINE_NUMBER_COLOR;
extern int TEXT_LINE_NUMBER_COLOR_FOCUS;
2016-09-08 18:49:26 +00:00
extern int TEXT_HIGHLIGHT_COLOR;
2016-08-27 10:49:03 +00:00
2016-09-08 20:09:31 +00:00
// Photo viewer colors
extern int PHOTO_ZOOM_COLOR;
// Audio player colors
extern int AUDIO_INFO_ASSIGN;
extern int AUDIO_INFO;
extern int AUDIO_SPEED;
extern int AUDIO_TIME_CURRENT;
extern int AUDIO_TIME_SLASH;
extern int AUDIO_TIME_TOTAL;
extern int AUDIO_TIME_BAR;
extern int AUDIO_TIME_BAR_BG;
2016-09-03 22:08:22 +00:00
extern vita2d_texture *folder_icon, *file_icon, *archive_icon, *image_icon, *audio_icon, *sfo_icon, *text_icon,
2017-10-13 10:42:36 +00:00
*ftp_image, *dialog_image, *context_image, *context_more_image, *settings_image, *battery_image,
*battery_bar_red_image, *battery_bar_green_image, *battery_bar_charge_image, *bg_browser_image, *bg_hex_image, *bg_text_image,
*bg_photo_image, *bg_audio_image, *cover_image, *play_image, *pause_image,
*fastforward_image, *fastrewind_image, *folder_symlink_icon, *file_symlink_icon;
2016-08-28 14:36:27 +00:00
extern vita2d_texture *wallpaper_image;
2016-08-28 14:36:27 +00:00
extern vita2d_texture *previous_wallpaper_image, *current_wallpaper_image;
2016-08-27 10:49:03 +00:00
void loadTheme();
2016-10-18 12:35:35 +00:00
#endif