summaryrefslogtreecommitdiffstats
path: root/kicker/kicker/core/menumanager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kicker/kicker/core/menumanager.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker/kicker/core/menumanager.h')
-rw-r--r--kicker/kicker/core/menumanager.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kicker/kicker/core/menumanager.h b/kicker/kicker/core/menumanager.h
index ed0e5d225..e9d7dfef4 100644
--- a/kicker/kicker/core/menumanager.h
+++ b/kicker/kicker/core/menumanager.h
@@ -25,38 +25,38 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define KICKER_MENU_MANAGER_H
#include <dcopobject.h>
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
class PanelKMenu;
class KickerClientMenu;
class PanelPopupButton;
-typedef QValueList<PanelPopupButton*> KButtonList;
+typedef TQValueList<PanelPopupButton*> KButtonList;
/**
* The factory for menus created by other applications. Also the owner of these menus.
*/
-class MenuManager : public QObject, DCOPObject
+class MenuManager : public TQObject, DCOPObject
{
Q_OBJECT
public:
static MenuManager* the();
// dcop exported
- QCString createMenu(QPixmap icon, QString text);
- void removeMenu(QCString menu);
+ TQCString createMenu(TQPixmap icon, TQString text);
+ void removeMenu(TQCString menu);
// dcop internal
- bool process(const QCString &fun, const QByteArray &data, QCString& replyType, QByteArray &reply);
+ bool process(const TQCString &fun, const TQByteArray &data, TQCString& replyType, TQByteArray &reply);
// KMenu controls
PanelKMenu* kmenu() { return m_kmenu; }
void showKMenu();
- void popupKMenu(const QPoint &p);
+ void popupKMenu(const TQPoint &p);
void registerKButton(PanelPopupButton *button);
void unregisterKButton(PanelPopupButton *button);
- PanelPopupButton* findKButtonFor(QPopupMenu* menu);
+ PanelPopupButton* findKButtonFor(TQPopupMenu* menu);
~MenuManager();
public slots:
@@ -64,15 +64,15 @@ public slots:
void kmenuAccelActivated();
protected slots:
- void applicationRemoved(const QCString&);
+ void applicationRemoved(const TQCString&);
protected:
PanelKMenu* m_kmenu;
- typedef QValueList<KickerClientMenu*> ClientMenuList;
+ typedef TQValueList<KickerClientMenu*> ClientMenuList;
ClientMenuList clientmenus;
private:
- MenuManager(QObject *parent = 0);
+ MenuManager(TQObject *parent = 0);
static MenuManager* m_self;
KButtonList m_kbuttons;