Поиск по:rtm-cs.sinp.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера rtm-cs.sinp.msu.ru ,которые мы индексируем. Показаны документы 781 - 800 из 1170.
Упорядочить по:
URL
|
дате изменения
781. Qt tutorial - t11/main.cpp
Qt tutorial 11 ** ****************************************************************/ # 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: MyWidget( QWidget *parent=0, const char *name=0 ); protected: void ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11-main-cpp.html -- 5.6 Кб -- 11.07.1998
Похожие документы
Похожие документы
782. Qt tutorial - t11/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 = t11 !INCLUDE $(QTDIR)\Makefile.inc . Copyright © 1998 Troll Tech . Trademarks . Qt version 1.40
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11-makefile.html -- 2.1 Кб -- 11.07.1998
Похожие документы
Похожие документы
783. Qt Tutorial - Chapter 11
... Returns TRUE if a shot is underway. void shoot(); . ... This private function paints the shot. ... The qRound() function is an inline function defined in qglobal.h (included by all other Qt header files). qRound() rounds a double to the closest integer. class MyWidget : public QWidget { public: MyWidget( QWidget *parent=0, const char *name=0 ); protected: void resizeEvent( QResizeEvent * ); private: QPushButton *quit; QPushButton *shoot; LCDRange *angle; LCDRange *force; CannonField *cannonField; };...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t11.html -- 11.7 Кб -- 11.07.1998
Похожие документы
Похожие документы
784. Qt tutorial - t12/cannon.cpp
Implementation CannonField class, Qt tutorial 12 ** ****************************************************************/ #include cannon.h #include qpainter.h #include qpixmap.h #include qdatetime.h #include math.h #include stdlib.h CannonField :: CannonField ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { ang = 45; f = 0; shooting = FALSE; timerCount = 0; shoot_ang ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12-cannon-cpp.html -- 8.2 Кб -- 11.07.1998
Похожие документы
Похожие документы
785. Qt tutorial - t12/cannon.h
Definition of CannonField class, Qt tutorial 12 ** ****************************************************************/ #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 { return shooting; } ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12-cannon-h.html -- 3.2 Кб -- 11.07.1998
Похожие документы
Похожие документы
786. Qt tutorial - t12/lcdrange.cpp
Implementation of LCDRange class, Qt tutorial 12 ** ****************************************************************/ #include lcdrange .h #include qscrollbar.h #include qlcdnumber.h #include qlabel.h LCDRange :: LCDRange ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { init (); } LCDRange :: LCDRange ( const char *s, QWidget *parent, ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12-lcdrange-cpp.html -- 4.5 Кб -- 11.07.1998
Похожие документы
Похожие документы
787. Qt tutorial - t12/lcdrange.h
Definition of LCDRange class , Qt tutorial 12 ** ****************************************************************/ #ifndef LCDRANGE_H #define LCDRANGE_H #include qwidget.h class QScrollBar; class QLCDNumber; class QLabel; class LCDRange : public QWidget { Q_OBJECT public: LCDRange ( QWidget *parent=0, const char *name=0 ); LCDRange ( const char *s, QWidget *parent=0, const ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12-lcdrange-h.html -- 2.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
788. Qt tutorial - t12/main.cpp
Qt tutorial 12 ** ****************************************************************/ #include qapplication.h #include qpushbutton ... public: MyWidget( QWidget *parent=0, const char *name=0 ); protected: void resizeEvent( QResizeEvent * ); private: QPushButton * quit ; QPushButton * shoot ; LCDRange * angle ; LCDRange * force ; CannonField * ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12-main-cpp.html -- 5.7 Кб -- 11.07.1998
Похожие документы
Похожие документы
789. Qt tutorial - t12/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 = t12 !INCLUDE $(QTDIR)\Makefile.inc . Copyright © 1998 Troll Tech . Trademarks . Qt version 1.40
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12-makefile.html -- 2.1 Кб -- 11.07.1998
Похожие документы
Похожие документы
790. Qt Tutorial - Chapter 12
In this example, we extend our LCDRange class to include a text label. ... We have added a new constructor that sets the label text in addition to the parent and name. const char *text() const; . This function returns the label text. void setText( const char * ); . ... QLabel *label; . ... This function returns the label text. void LCDRange::setText( const char *s ) { label->setText( s ); } . ... We set the angle text label to "ANGLE". force = new LCDRange( "FORCE", this, "force" ); . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t12.html -- 14.4 Кб -- 11.07.1998
Похожие документы
Похожие документы
791. Qt tutorial - t13/cannon.cpp
Implementation CannonField class, Qt tutorial 13 ** ****************************************************************/ #include cannon.h #include qpainter.h ... qpixmap.h #include qdatetime.h #include qfont.h #include math.h #include stdlib.h CannonField :: CannonField ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { ang = 45; f = 0; shooting = FALSE; timerCount = 0; shoot_ang ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-cannon-cpp.html -- 9.0 Кб -- 11.07.1998
Похожие документы
Похожие документы
792. Qt tutorial - t13/cannon.h
Definition of CannonField class, Qt tutorial 13 ** ****************************************************************/ #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 gameOver() const { return gameEnded; } ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-cannon-h.html -- 3.3 Кб -- 11.07.1998
Похожие документы
Похожие документы
793. Qt tutorial - t13/gamebrd.cpp
Implementation of GameBoard class, Qt tutorial 13 ** ****************************************************************/ #include gamebrd.h #include qfont.h ... ;cannon.h GameBoard::GameBoard( QWidget *parent, const char *name ) : QWidget ( parent, name ) { setMinimumSize ( 500, 355 ); quit = new QPushButton ( Quit , this, quit ); quit - setFont( QFont ( Times , 18, QFont::Bold ) ); connect ( ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-gamebrd-cpp.html -- 6.5 Кб -- 11.07.1998
Похожие документы
Похожие документы
794. Qt tutorial - t13/gamebrd.h
Definition of GameBoard class , Qt tutorial 13 ** ****************************************************************/ #ifndef GAMEBRD_H #define GAMEBRD_H # include qwidget.h class QPushButton ; class LCDRange; class QLCDNumber; class CannonField ; # include lcdrange.h # include cannon.h class GameBoard : public QWidget { Q_OBJECT public: ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-gamebrd-h.html -- 2.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
795. Qt tutorial - t13/lcdrange.cpp
Implementation of LCDRange class, Qt tutorial 13 ** ****************************************************************/ #include lcdrange .h #include qscrollbar.h #include qlcdnumber.h #include qlabel.h LCDRange :: LCDRange ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { init (); } LCDRange :: LCDRange ( const char *s, QWidget *parent, ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-lcdrange-cpp.html -- 4.5 Кб -- 11.07.1998
Похожие документы
Похожие документы
796. Qt tutorial - t13/lcdrange.h
Definition of LCDRange class , Qt tutorial 13 ** ****************************************************************/ #ifndef LCDRANGE_H #define LCDRANGE_H #include qwidget.h class QScrollBar; class QLCDNumber; class QLabel; class LCDRange : public QWidget { Q_OBJECT public: LCDRange ( QWidget *parent=0, const char *name=0 ); LCDRange ( const char *s, QWidget *parent=0, const ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-lcdrange-h.html -- 2.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
797. Qt tutorial - t13/main.cpp
. /**************************************************************** ** ** Qt tutorial 13 ** ****************************************************************/ #include < qapplication.h > #include "gamebrd.h" int main( int argc, char **argv ) { QApplication::setColorSpec ( QApplication::CustomColor ); QApplication a( argc, argv ); GameBoard gb; gb. setGeometry ( 100, 100, 500, 355 ); a. setMainWidget ( &gb ); gb. show (); return a. exec (); } . Copyright © 1998 Troll Tech . Trademarks . Qt version 1.40
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-main-cpp.html -- 2.4 Кб -- 11.07.1998
Похожие документы
Похожие документы
798. Qt tutorial - t13/makefile
. ############################################################################# # $Id: Makefile,v 2.6 1998/02/27 14:03:19 hanord Exp $ # # Win32 Makefile, requires Microsoft nmake. # # Copyright (C) 1998 by Troll Tech AS. All rights reserved. # ############################################################################# PROJECT = t13 !INCLUDE $(QTDIR)\Makefile.inc . Copyright © 1998 Troll Tech . Trademarks . Qt version 1.40
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13-makefile.html -- 2.1 Кб -- 11.07.1998
Похожие документы
Похожие документы
799. Qt Tutorial - Chapter 13
... This file is new. It contains the definition of the GameBoard class, which was last seen as MyWidget. class GameBoard : public QWidget { Q_OBJECT public: GameBoard( QWidget *parent=0, const char *name=0 ); protected: void resizeEvent( QResizeEvent * ); protected slots: void fire(); void hit(); void missed(); void newGame(); private: QPushButton *quit; QPushButton *shoot; QPushButton *restart; LCDRange *angle; LCDRange *force; QLCDNumber *hits; QLCDNumber *shotsLeft; CannonField *cannonField; }; . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t13.html -- 12.8 Кб -- 11.07.1998
Похожие документы
Похожие документы
800. Qt tutorial - t14/cannon.cpp
Implementation CannonField class, Qt tutorial 14 ** ****************************************************************/ #include cannon.h #include qpainter.h ... qpixmap.h #include qdatetime.h #include qfont.h #include math.h #include stdlib.h CannonField :: CannonField ( QWidget *parent, const char *name ) : QWidget ( parent, name ) { ang = 45; f = 0; shooting = ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t14-cannon-cpp.html -- 11.3 Кб -- 11.07.1998
Похожие документы
Похожие документы