summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/gtkmm2ext/application.h
blob: 65c4731ce0733d40cf93910b2ef8c864bc13df11 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* GTK+ Integration with platform-specific application-wide features
 * such as the OS X menubar and application delegate concepts.
 *
 * Copyright (C) 2009 Paul Davis
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; version 2.1
 * of the License.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifndef __GTK_APPLICATION_MM_H__
#define __GTK_APPLICATION_MM_H__

#include <sigc++/signal.h>

#include "gtkmm2ext/visibility.h"
#include "gtkmm2ext/gtkapplication.h" // for GtkApplicationGroup typedef

namespace Gtk {
	class MenuItem;
	class MenuShell;
}

namespace Glib {
	class ustring;
}

namespace Gtkmm2ext {

class LIBGTKMM2EXT_API Application
{
public:
    static Application* instance();
    ~Application ();

    void                     ready ();
    void                     hide ();
    void                     cleanup ();
    void                     set_menu_bar (Gtk::MenuShell&);
    GtkApplicationMenuGroup* add_app_menu_group ();
    void                     add_app_menu_item (GtkApplicationMenuGroup*, Gtk::MenuItem*);

    sigc::signal<void,bool>                 ActivationChanged;
    sigc::signal<void,const Glib::ustring&> ShouldLoad;
    sigc::signal<void>                      ShouldQuit;

private:
    Application ();

    static Application* _instance;
};

}

#endif /* __GTK_APPLICATION_MM_H__ */