You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kommando/src/kommando.h

87 lines
3.4 KiB

/***************************************************************************
* Copyright (C) 2005 by Daniel Stöckel *
* the_docter@gmx.net *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _KOMMANDO_H_
#define _KOMMANDO_H_
#include <tqwidget.h>
#include <tqptrlist.h>
#include <kpixmap.h>
#include "menu.h"
class Kommando : public TQWidget
{
TQ_OBJECT
public:
Kommando();
/*
* The window needs to appear at the mousecursors current position
* overriding TQWidget::show() makes this easy, showEvent() does not
* work properly though.
*/
virtual void show();
virtual void hide();
virtual void toggle();
virtual void execute();
virtual void selectButton(int num);
virtual void nextButton() { selectButton(actMenu->selectedButtonNum()+1); }
virtual void previousButton() { selectButton(actMenu->selectedButtonNum()-1); }
virtual void setActTopLevelMenu(const TQString& appName);
virtual void setActMenu(Menu* newmenu);
virtual void setTopLevelMenus(const TQPtrList<Menu>& newmenus);
//virtual Menu* getMainMenu(){return mainMenu;}
virtual const TQPixmap* screenshot(){return &mScreenshot;}
virtual void setNavButtonSize(unsigned short size);
virtual void resize();
public slots:
//Slot for TDEGlobalAccel
virtual void slotGlobAccel();
protected:
Menu* actMenu;
TQPtrList<Menu> mTopLevelMenus;
RoundButton navbutton;
bool middleMouseButtonState;
int oldNavbuttonIconType; //holds whether the icon should be changed
KPixmap mScreenshot;
//Some events
virtual void paintEvent (TQPaintEvent* evt);
virtual void windowActivationChange ( bool oldActive );
virtual void wheelEvent (TQWheelEvent * evt);
virtual void keyPressEvent(TQKeyEvent* evt);
virtual void mousePressEvent(TQMouseEvent* evt);
virtual void mouseReleaseEvent(TQMouseEvent* evt);
protected slots:
virtual void slotOnClick();
virtual void slotNavClick();
virtual void slotButtonSelected(int type);
};
#endif // _KOMMANDO_H_