[go: up one dir, main page]

Menu

[e0151d]: / src / themes.h  Maximize  Restore  History

Download this file

26 lines (17 with data), 470 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef __THEMES_H
#define __THEMES_H
#ifndef NO_CONFIGURE_MENUS
#include "objmenu.h"
#include <sys/time.h>
class YMenu;
class ThemesMenu: public ObjectMenu {
public:
ThemesMenu(YWindow *parent = 0);
virtual ~ThemesMenu();
private:
void findThemes(char const *path, YMenu *container);
static YMenuItem *newThemeItem(char const *label, char const *theme);
static void findThemeAlternatives(char const *path, YMenuItem *item);
};
#endif
#endif