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.
kvirc/src/kvirc/ui/kvi_styled_controls.h

117 lines
3.2 KiB

#ifndef _KVI_STYLED_CONTROLS_H_
#define _KVI_STYLED_CONTROLS_H_
///////////////////////////////////////////////////////////////////////////////
//
// File : kvi_styled_controls.h
// Creation date : 19 Jan 2006 GMT by Alexey Uzhva
//
// This toolbar is part of the KVirc irc client distribution
// Copyright (C) 2006 Alexey Uzhva
//
// 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 opinion) 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. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
///////////////////////////////////////////////////////////////////////////////
#include "kvi_settings.h"
#ifdef COMPILE_USE_QT4
// we use internal TQt4 styles for now
#include <tqcheckbox.h>
#include <tqtoolbutton.h>
#define KviStyledCheckBox TQCheckBox
#define KviStyledToolButton TQToolButton
#else
#include <tqcheckbox.h>
#include <tqtoolbutton.h>
#include <tqevent.h>
#include <tqtimer.h>
#include "kvi_heapobject.h"
class KviTalToolBar;
#define KVI_STYLE_NUM_STEPS 20
#define KVI_STYLE_COLOR_DIFF 60
#define KVI_STYLE_TIMER_STEP 18
class KviStyledControl;
class KVIRC_API KviStyledControlInternal : public TQObject
{
TQ_OBJECT
public:
KviStyledControlInternal( KviStyledControl* control );
~KviStyledControlInternal();
public slots:
virtual void paintTimerShot();
protected:
bool eventFilter( TQObject *obj, TQEvent *ev );
protected:
KviStyledControl* m_pControl;
};
class KVIRC_API KviStyledControl
{
friend class KviStyledControlInternal;
public:
KviStyledControl(TQWidget*);
~KviStyledControl();
protected:
virtual void enterEvent ( TQEvent * );
virtual void leaveEvent ( TQEvent * );
int m_bMouseEnter;
int m_iStepNumber;
TQTimer* m_pTimer;
KviStyledControlInternal* m_pInternal;
TQWidget *m_pWidget;
};
class KVIRC_API KviStyledCheckBox : public TQCheckBox, public KviStyledControl
{
TQ_OBJECT
public:
KviStyledCheckBox ( TQWidget * parent, const char * name = 0 );
KviStyledCheckBox ( const TQString & text, TQWidget * parent, const char * name = 0 );
~KviStyledCheckBox();
protected:
virtual void paintEvent ( TQPaintEvent * );
};
class KVIRC_API KviStyledToolButton : public TQToolButton, public KviStyledControl
{
TQ_OBJECT
private:
bool bShowSubmenuIndicator;
public:
KviStyledToolButton ( TQWidget * parent, const char * name = 0 );
KviStyledToolButton ( const TQIconSet & iconSet, const TQString & textLabel, const TQString & grouptext, TQObject * receiver, const char * slot, KviTalToolBar * parent, const char * name = 0 );
~KviStyledToolButton();
void setShowSubmenuIndicator(bool bShow);
protected:
virtual void paintEvent ( TQPaintEvent * );
virtual void resizeEvent ( TQResizeEvent * ) ;
};
#endif
#endif