⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kslider.h

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 H
字号:
/* This file is part of the KDE libraries    Copyright (C) 1997 Martin Jones (mjones@kde.org)              (C) 1997-1999 Christian Esken (esken@kde.org)    This library is free software; you can redistribute it and/or    modify it under the terms of the GNU Library General Public    License as published by the Free Software Foundation; either    version 2 of the License, or (at your option) any later version.    This library 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    Library General Public License for more details.    You should have received a copy of the GNU Library General Public License    along with this library; see the file COPYING.LIB.  If not, write to    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,    Boston, MA 02111-1307, USA.*///-----------------------------------------------------------------------------// Slider control V2.2// (C) 1997-1999 Christian Esken (esken@kde.org)// V1.0 Copyright (C) Martin R. Jones 1997#ifndef __KSLIDER_H__#define __KSLIDER_H__// undef Above+Below because of Qt <-> X11 collision. Grr, I hate X11 headers#undef Above#undef Below#include <qslider.h>/**KSlider is a control for selecting a value from using a sliding pointer.It is similar to QSlider but it always looks like Windows style andadditionaly it provides a pageStep(). This makes it an ideal widget for position indiicators, especially inmultimedia applications. Please note that currently tick marks cannotbe switched off.The interface is identical to QSlider, please see the Qt documentation formore information. The pageStep is not being used in QSlider, you can setthis by calling setSteps( line, page ).*/class KSlider : public QSlider{  Q_OBJECT    public:  KSlider( QWidget *parent = 0L, const char *name = 0L );  KSlider( Orientation o, QWidget *parent = 0L, const char *name = 0L );  KSlider( int _minValue, int _maxValue, int _Step, int _value,	   Orientation o, QWidget *parent = 0L, const char *name = 0L );  virtual QSize sizeHint() const;signals:  void valueChanged( int value );  void sliderPressed();  void sliderMoved( int value );  void sliderReleased();protected:  virtual void valueChange();  virtual void rangeChange();  virtual void paletteChange(const QPalette &);  virtual void paintSlider(QPainter *painter, const QRect &rect );  virtual void backgroundColorChange(const QPalette &);  virtual void focusInEvent( QFocusEvent * );  virtual void focusOutEvent( QFocusEvent * );private:  QPoint calcArrowPos( int val );  void moveArrow( const QPoint &pos );  void drawArrow( QPainter *painter, bool show, const QPoint &pos );  void drawShadeLine( QPainter *painter );  void drawTickMarks( QPainter *painter );  void drawTicks( QPainter * p, int d, int w, int i=1 );  void drawWinGroove(class QPainter *, short int);  void drawFocusBar(QPainter *painter, const QRect & );  virtual void paintEvent( QPaintEvent * );  int checkWidth();  bool isFocussed;};//-----------------------------------------------------------------------------#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -