Поиск по:rtm-cs.sinp.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера rtm-cs.sinp.msu.ru ,которые мы индексируем. Показаны документы 761 - 780 из 1170.
Упорядочить по:
URL
|
дате изменения
761. Qt Toolkit - QPrintDialog Class
The QPrintDialog class provides a dialog for specifying print-out details. ... QPrintDialog ( QPrinter *, QWidget * parent=0, const char * name=0 ) . ... void setPrinter ( QPrinter *, bool = FALSE ) . ... Display a dialog and allow the user to configure the QPrinter p. Returns TRUE if the user clicks OK or presses Enter, FALSE if the user clicks Cancel or presses Escape. getPrinterSetup() remembers the settings and provides the same settings the next time the dialog is shown. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qprintdialog.html -- 5.7 Кб -- 11.07.1998
Похожие документы
Похожие документы
762. Qt Toolkit - QPushButton Class
The QPushButton widget provides a push button with a text or pixmap label. ... QPushButton ( QWidget * parent=0, const char * name=0 ) . QPushButton ( const char * text, QWidget * parent=0, const char * name=0 ) . void setToggleButton ( bool ) . ... A default push button in a dialog emits the clicked signal if the user presses the Enter key. ... See also: QRadioButton , QToolButton and GUI Design Handbook: Push Button . ... Only one push button in the dialog can be default. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qpushbutton.html -- 13.0 Кб -- 11.07.1998
Похожие документы
Похожие документы
763. Qt Toolkit - QRadioButton Class
The QRadioButton widget provides a radio button with a text label. ... Inherits QButton . ... QRadioButton ( QWidget * parent=0, const char * name=0 ) . QRadioButton ( const char * text, QWidget * parent=0, const char * name=0 ) . ... virtual QSize sizeHint () const . virtual bool hitButton ( const QPoint & ) const . ... Reimplemented from QButton. ... This function is implemented to prevent a radio button that is on from being switched off. ... Reimplemented from QWidget. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qradiobutton.html -- 8.3 Кб -- 11.07.1998
Похожие документы
Похожие документы
764. Qt Toolkit - QSpinBox Class
The QSpinBox class provides a spin box widget, sometimes called up-down widget, little arrows widget or spin button. ... The spin box clamps the value within a numeric range, see QRangeControl for details. ... Most spin boxes are directional, but QSpinBox can also operate as a circular spin box, i.e. if the range is 0-99 and the current value is 99, clicking Up will give 0. ... This virtual function is used by the spin box whenever it needs to interpret the text entered by the user as a value. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qspinbox.html -- 23.6 Кб -- 11.07.1998
Похожие документы
Похожие документы
765. Qt Toolkit - QString Class
The QString class provides an abstraction of the classic C zero-terminated char array ( char* ). ... QString ( const char * str ) . QString ( const char * str, uint maxlen ) . ... QString& operator= ( const char * str ) . ... int find ( char c, int index=0, bool cs=TRUE ) const . int find ( const char * str, int index=0, bool cs=TRUE ) const . ... int findRev ( const char * str, int index=-1, bool cs=TRUE ) const . ... int contains ( const char * str, bool cs=TRUE ) const . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qstring.html -- 50.2 Кб -- 11.07.1998
Похожие документы
Похожие документы
766. Qt Toolkit - QWidgetStack Class
The QWidgetStack class provides a stack of widgets, where the user can see only the top widget. ... QWidgetStack ( QWidget * parent = 0, const char * name = 0 ) . ... void addWidget ( QWidget *, int ) . void removeWidget ( QWidget * ) . ... void raiseWidget ( int ) . void raiseWidget ( QWidget * ) . ... Raises w to the top of the widget stack. ... Returns a pointer to the currently visible widget (the one on the top of the stack), of 0 if nothing is currently being shown. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qwidgetstack.html -- 9.7 Кб -- 11.07.1998
Похожие документы
Похожие документы
767. Qt Toolkit - group index
These widgets are meant for direct use. There are also some abstract widget classes, meant for subclassing, and some more complex widgets. ... QButtonGroup (Organizes QButton widgets in a group) . QCheckBox (Check box with a text label) . QComboBox (Combined button and popup list) . QFrame (The base class of widgets that have an (optional) frame) . ... QMenuBar (Horizontal menu bar) . ... QSpinBox (Spin box widget, sometimes called up-down widget, little arrows widget or spin button) . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/realwidgets.html -- 4.4 Кб -- 11.07.1998
Похожие документы
Похожие документы
768. Qt Shared Classes
Many C++ classes in Qt utilize a data sharing mechanism to maximize resource usage and minimize copying of data. ... A reference count. The data. When a shared object is created, it sets the reference count to 1. The reference count is incremented whenever a new object references the shared data, and decremented when the object dereferences the shared data. ... These classes have a detach() function that can be called if you want your object to get a private copy of the shared data. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/shclass.html -- 9.0 Кб -- 11.07.1998
Похожие документы
Похожие документы
769. Qt Tutorial - Chapter 1
This first program is a simple hello-world example. ... Qt tutorial 1 ** ****************************************************************/ #include < qapplication.h > #include < qpushbutton.h > int main( int argc, char **argv ) { QApplication a( argc, argv ); QPushButton hello( "Hello world!" ); hello. resize ( 100, 30 ); a. setMainWidget ( &hello ); hello. show (); return a. exec (); } . ... You don't have to have a main widget, but most programs have one. hello. show (); . ... Press the button. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t1.html -- 6.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
770. Qt tutorial - t10/cannon.cpp
Implementation CannonField class, Qt tutorial 10 ** ****************************************************************/ #include cannon.h #include qpainter.h #include qpixmap.h CannonField :: CannonField ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { ang = 45; f = 0; } void CannonField ::setAngle( int degrees ) { if ( degrees 5 ) degrees = 5; if ( degrees 70 ) ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10-cannon-cpp.html -- 4.5 Кб -- 11.07.1998
Похожие документы
Похожие документы
771. Qt tutorial - t10/cannon.h
Definition of CannonField class, Qt tutorial 10 ** ****************************************************************/ #ifndef CANNON_H #define CANNON_H #include qwidget.h class CannonField : public QWidget { Q_OBJECT public : CannonField ( QWidget *parent=0, const char *name=0 ); int angle() const { return ang ; } int force() const { return f; } public slots: void setAngle( ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10-cannon-h.html -- 2.6 Кб -- 11.07.1998
Похожие документы
Похожие документы
772. Qt tutorial - t10/lcdrange.cpp
Implementation of LCDRange class, Qt tutorial 10 ** ****************************************************************/ #include lcdrange .h #include qscrollbar.h #include qlcdnumber.h LCDRange :: LCDRange ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { lcd = new QLCDNumber ( 2, this, lcd ); lcd - move( 0, 0 ); ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10-lcdrange-cpp.html -- 3.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
773. Qt tutorial - t10/lcdrange.h
Definition of LCDRange class , Qt tutorial 10 ** ****************************************************************/ #ifndef LCDRANGE_H #define LCDRANGE_H #include qwidget.h class QScrollBar; class QLCDNumber; class LCDRange : public QWidget { Q_OBJECT public : LCDRange ( QWidget *parent=0, const char *name=0 ); int value() const ; public slots: void setValue( int ); ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10-lcdrange-h.html -- 2.5 Кб -- 11.07.1998
Похожие документы
Похожие документы
774. Qt tutorial - t10/main.cpp
Qt tutorial 10 ** ****************************************************************/ # include qapplication.h # include qpushbutton.h # include qscrollbar.h # include qlcdnumber.h # include qfont.h # include lcdrange.h # include cannon.h class MyWidget : public QWidget { public: ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10-main-cpp.html -- 5.2 Кб -- 11.07.1998
Похожие документы
Похожие документы
775. Qt tutorial - t10/makefile
. ############################################################################# # $Id: Makefile,v 2.6 1998/02/27 14:03:18 hanord Exp $ # # Win32 Makefile, requires Microsoft nmake. # # Copyright (C) 1998 by Troll Tech AS. All rights reserved. # ############################################################################# PROJECT = t10 !INCLUDE $(QTDIR)\Makefile.inc . Copyright © 1998 Troll Tech . Trademarks . Qt version 1.40
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10-makefile.html -- 2.1 Кб -- 11.07.1998
Похожие документы
Похожие документы
776. Qt Tutorial - Chapter 10
... cannon.h contains the CannonField class definition . ... We have moved the painting of the cannon to a separate function and have also put the defintion of the cannon's enclosing rectangle in a separate function. int ang; int f; }; . ... QPainter tmp; . ... We place the force LCDRange widget below the angle widget and specify the range to 10..50. connect ( force,SIGNAL(valueChanged(int)), cannonField,SLOT(setForce(int))); connect ( cannonField,SIGNAL(forceChanged(int)), force,SLOT(setValue(int))); ....
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t10.html -- 10.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
777. Qt tutorial - t11/cannon.cpp
Implementation CannonField class, Qt tutorial 11 ** ****************************************************************/ #include cannon.h #include qpainter.h #include qpixmap.h #include math.h CannonField :: CannonField ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { ang = 45; f = 0; shooting = FALSE; timerCount = 0; shoot_ ang = 0; shoot_f = 0; } void CannonField ::setAngle( int ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11-cannon-cpp.html -- 6.7 Кб -- 11.07.1998
Похожие документы
Похожие документы
778. Qt tutorial - t11/cannon.h
Definition of CannonField class, Qt tutorial 11 ** ****************************************************************/ #ifndef CANNON_H #define CANNON_H #include qwidget.h class CannonField : public QWidget { Q_OBJECT public : CannonField ( QWidget *parent=0, const char *name=0 ); int angle() const { return ang; } int force() const { return f; } bool isShooting() const { ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11-cannon-h.html -- 3.0 Кб -- 11.07.1998
Похожие документы
Похожие документы
779. Qt tutorial - t11/lcdrange.cpp
Implementation of LCDRange class, Qt tutorial 11 ** ****************************************************************/ #include lcdrange .h #include qscrollbar.h #include qlcdnumber.h LCDRange :: LCDRange ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { lcd = new QLCDNumber ( 2, this, lcd ); lcd - move( 0, 0 ); ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11-lcdrange-cpp.html -- 3.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
780. Qt tutorial - t11/lcdrange.h
Definition of LCDRange class , Qt tutorial 11 ** ****************************************************************/ #ifndef LCDRANGE_H #define LCDRANGE_H #include qwidget.h class QScrollBar; class QLCDNumber; class LCDRange : public QWidget { Q_OBJECT public : LCDRange ( QWidget *parent=0, const char *name=0 ); int value() const ; public slots: void setValue( int ); ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11-lcdrange-h.html -- 2.5 Кб -- 11.07.1998
Похожие документы
Похожие документы