Qt:Документация 4.3.2/qspinbox-qt3
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] Qt 3 Support Members for QSpinBox
The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.
[править] Открытые функции
- QSpinBox ( QWidget * parent, const char * name )
- QSpinBox ( int minimum, int maximum, int step, QWidget * parent, const char * name = 0 )
- int maxValue () const
- int minValue () const
- void setLineStep ( int step )
- void setMaxValue ( int value )
- void setMinValue ( int value )
- 60 открытых функций унаследованных от QWidget
- 8 открытых функций унаследованных от QObject
- 8 открытых функций унаследованных от QPaintDevice
[править] Описание функций-членов
[править] QSpinBox::QSpinBox ( QWidget * parent, const char * name )
Use one of the constructors that doesn't take the name argument and then use setObjectName() instead.
[править] QSpinBox::QSpinBox ( int minimum, int maximum, int step, QWidget * parent, const char * name = 0 )
Use one of the constructors that doesn't take the name argument and then use setObjectName() instead.
[править] int QSpinBox::maxValue () const
Use maximum() instead.
See also setMaxValue().
[править] int QSpinBox::minValue () const
Use minimum() instead.
See also setMinValue().
[править] void QSpinBox::setLineStep ( int step )
Use setSingleStep() instead.
[править] void QSpinBox::setMaxValue ( int value )
Use setMaximum() instead.
See also maxValue().
[править] void QSpinBox::setMinValue ( int value )
Use setMinimum() instead.
See also minValue().
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|