~israeldahl/jwm-settings-manager/trunk

« back to all changes in this revision

Viewing changes to include/ui.hpp

  • Committer: Israel Dahl
  • Date: 2018-01-16 14:17:27 UTC
  • Revision ID: israeldahl@gmail.com-20180116141727-1eqofcuc0c5ukzdw
Update main branch to be current

* Windows
  - configure button actions
 * Desktop
   - file manager preferences
 * Themes
   - parse directories and ignore non-xml files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*                 Joe's Window Manager Configuration
 
2
 *
 
3
 * This program configures JWM using pugixml and FLTK
 
4
 *
 
5
 *         Copyright (C) 2016  Israel <israeldahl@gmail.com>
 
6
 * This program is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 * 
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 * This has been developed as a part of the ToriOS Project
 
19
 *
 
20
 *
 
21
 * You may redistribute this, but you must keep this comment in place
 
22
 * Jesus is my Lord, and if you don't like it feel free to ignore it.
 
23
 */
 
24
#ifndef UI_H_INCLUDED
 
25
#define UI_H_INCLUDED
 
26
//FLTK stuff
 
27
#include "../fltk/jwm-autostart.h"
 
28
#include "../fltk/jwm-window.h"
 
29
//#include "../fltk/jwm-settings.h"
 
30
#include "../fltk/jwm-keyboard.h"
 
31
#include "../fltk/jwm-fonts.h"
 
32
#include "../fltk/jwm-themes.h"
 
33
#include "../fltk/jwm-desktop.h"
 
34
#include "../fltk/jwm-icons.h"
 
35
#include "../fltk/jwm-panel.h"
 
36
#include "../fltk/jwm-menu.h"
 
37
#include "../fltk/jwm-popups.h"
 
38
#include "jwmrc.hpp"
 
39
#include "fltkfunctions.hpp"
 
40
class JSM_UI : public FLTK_FUNCTIONS
 
41
{
 
42
        public:
 
43
                int showPanel();
 
44
                int showClock();
 
45
                int showDesktop();
 
46
                int showThemes();
 
47
                int showWindow();
 
48
                int showIcons();
 
49
                int showFonts();
 
50
                int showKeyboard();
 
51
                int showMouse();
 
52
                int showMenu();
 
53
                int showMenu(std::string menu);
 
54
                int showAutostart();
 
55
                int showShortcuts();
 
56
                int showPopus();
 
57
};
 
58
#endif