~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to arts/builder/portablekde.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __PORTABLEKDE_H__
 
2
#define __PORTABLEKDE_H__
 
3
 
 
4
#include "config.h"
 
5
 
 
6
#include <qwidget.h>
 
7
#include <qpopupmenu.h>
 
8
#include <kconfig.h>
 
9
#include <klocale.h>
 
10
#include <qcolor.h>
 
11
#include <qpen.h>
 
12
#include <list>
 
13
#include <string>
 
14
 
 
15
/* remaining from the KDE1<->KDE2 portability thing and should disappear */
 
16
 
 
17
class PortableKDE {
 
18
public:
 
19
        /*
 
20
        static QPopupMenu* helpMenu(bool bAboutQtMenu, const QString& appAboutText);
 
21
        */
 
22
        static KConfig* config();
 
23
        static QString caption();
 
24
        static void KMsgSorry(QWidget *parent, const char *text);
 
25
        static std::list<std::string> globalDirs(const char *which);
 
26
};
 
27
 
 
28
#define KAppNameType QCString
 
29
 
 
30
#endif /* __PORTABLEKDE_H__ */