Scribus
Open source desktop publishing at your fingertips
scmwmenumanager.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 /***************************************************************************
8  begin : Jan 2010
9  copyright : (C) 2010 by Craig Bradney
10  email : cbradney@zip.com.au
11  ***************************************************************************/
12 
13 /***************************************************************************
14  * *
15  * This program is free software; you can redistribute it and/or modify *
16  * it under the terms of the GNU General Public License as published by *
17  * the Free Software Foundation; either version 2 of the License, or *
18  * (at your option) any later version. *
19  * *
20  ***************************************************************************/
21 
22 #ifndef SCMWMENUMANAGER_H
23 #define SCMWMENUMANAGER_H
24 
25 #include <QMenu>
26 #include <QObject>
27 
28 #include "menumanager.h"
29 #include "scribusapi.h"
30 
32 {
33  Q_OBJECT
34  public:
35  ScMWMenuManager(QMenuBar* mb, QObject *parent=0);
36 
37  public slots:
38  void languageChange();
39 };
40 
41 #endif // SCMWMENUMANAGER_H
Definition: scmwmenumanager.h:31
Definition: menumanager.h:43