XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:rtm-cs.sinp.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера rtm-cs.sinp.msu.ru ,которые мы индексируем. Показаны документы 1001 - 1020 из 1170.

В начало ] Пред. | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1001. Qt Toolkit - QStoredDrag Class
Simple stored-value drag object for arbitrary MIME data. ... QStoredDrag  ( const char * mimeType, QWidget * dragSource = 0, const char * name = 0 )  . QStoredDrag  ()  . ... virtual const char*  format  ( int i ) const . virtual QByteArray  encodedData  ( const char * ) const . ... Constructs a QStoredDrag. ... Sets the encoded data of this drag object to encodedData. ... This file is part of the Qt toolkit , copyright 1995-98 Troll Tech , all rights reserved. ... qdragobject.h: 1998/07/03 . ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qstoreddrag.html -- 4.8 Кб -- 11.07.1998
Похожие документы

1002. Qt Toolkit - QTextStream Class
The QTextStream class provides basic functions for reading and writing text using a QIODevice . ... int  flags  () const . ... Writes a char to the stream and returns a reference to the stream. ... Writes an int to the stream and returns a reference to the stream. Writes a long int to the stream and returns a reference to the stream. ... Writes an unsigned int to the stream and returns a reference to the stream. Writes an unsigned long int to the stream and returns a reference to the stream. ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qtextstream.html -- 23.5 Кб -- 11.07.1998
Похожие документы

1003. Qt Toolkit - QTime Class
The QTime class provides time functions 24 hours a day. ... QTime  ( int h, int m, int s=0, int ms=0 )  . bool  isNull  () const . ... Returns TRUE if the time is equal to 00:00:00.000. ... Returns TRUE if the time is valid, or FALSE if the time is invalid. ... Example: QTime::isValid (21, 10, 30); // returns TRUE QTime::isValid (22, 5, 62); // returns FALSE . ... Returns the number of milliseconds between this time and t. Returns TRUE if this time is different from t, or FALSE if they are equal. ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qtime.html -- 12.2 Кб -- 11.07.1998
Похожие документы

1004. Qt Toolkit - QTimerEvent Class
The QTimerEvent class contains parameters that describe a timer event. ... QTimerEvent  ( int timerId )  . ... Timer events are sent at regular intervals to objects that have started one or more timers. ... The QTimer class provides a high-level programming interface with one-shot timers and timer signals instead of events. The event handler QObject::timerEvent () receives timer events. ... Constructs a timer event object with the timer identifier set to timerId. ... qevent.h: 1998/07/03 . ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qtimerevent.html -- 4.6 Кб -- 11.07.1998
Похожие документы

1005. Qt Toolkit - QWhatsThis Class
The QWhatsThis class provides a simple description of any widget, e.g. answering the question "what's this?" ... List of all member functions. void  add  ( QWidget *, const char *, bool deepCopy = TRUE )  . ... void  remove  ( QWidget * )  . ... QWhatsThis provides functions to add () and remove () What's This help for a widget, and it provides a function to create a What's This button suitable for typical tool bars. ... Adds text as What's This help for widget, with title line title and icon icon. ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qwhatsthis.html -- 6.7 Кб -- 11.07.1998
Похожие документы

1006. Qt Toolkit - QWMatrix Class
The QWMatrix class specifies 2D transformations of a coordinate system. ... QWMatrix  ( float m11, float m12, float m21, float m22, float dx, float dy )  . void  setMatrix  ( float m11, float m12, float m21, float m22, float dx, float dy )  . float  m11  () const . ... float  m22  () const . ... The QWMatrix class contains a 3*3 matrix of the form: m11 m12 0 m21 m22 0 dx dy 1 . A matrix transforms a point in the plane to another point: x' = m11*x + m21*y + dx y' = m22*y + m12*x + dy . ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/qwmatrix.html -- 17.6 Кб -- 11.07.1998
Похожие документы

1007. Qt Toolkit - showimg/showimg.cpp example file
... This file is part of an example program for Qt. ... ImageViewer :: ImageViewer ( QWidget *parent, const char *name, int wFlags ) : QWidget ( parent, name, wFlags ), conversion_flags ( PreferDither ), filename( 0 ), helpmsg( 0 ) { pickx = -1; clickx = -1; alloc_context = 0; menubar = new QMenuBar (this); menubar ... ; f; f = fmt. next ()) { saveimage- insertItem( f ); savepixmap- insertItem( f ); } connect ( saveimage, SIGNAL(activated( int )), this, SLOT( saveImage ( ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/showimg-showimg-cpp.html -- 25.7 Кб -- 11.07.1998
Похожие документы

1008. Qt Tutorial - Chapter 3
This example shows how to create mother and child widgets. ... Qt tutorial 3 ** ****************************************************************/ # include qapplication.h # include qpushbutton .h # include qfont.h int main( int argc, char **argv ) { QApplication a( argc, argv ); QWidget w; w. resize ( 200, 120 ); QPushButton quit ( Quit , w ); quit . move ( 62, 40 ); quit . resize ( 75, 30 ); QWidget w; . ... QPushButton quit( "Quit", &w ); . A child is born. ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/t3.html -- 5.2 Кб -- 11.07.1998
Похожие документы

1009. Qt Toolkit - widgets/widgets.cpp example file
... Id: widgets.cpp,v 2.46 1998/07/08 13:22:45 aavit Exp $ ** ** Copyright (C) 1992-1998 Troll Tech AS. ... This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ # include qdialog.h # include qmessagebox.h # include qpixmap.h # include qmovie.h # include qlayout.h # include qapplication.h # include qkeycode.h // Standard Qt widgets # include qmenubar.h ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/widgets-widgets-cpp.html -- 31.2 Кб -- 11.07.1998
Похожие документы

1010. Qt Toolkit - xform/xform.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** ******************************************************* ... #include stdlib.h class FontSelect; class XFormControl : public QFrame { Q_OBJECT public: XFormControl( QWidget *parent=0, const char *name=0 ); ~XFormControl() {} signals: void newMatrix( QWMatrix ); void newText( const char * ); void newFont( const QFont ); ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/xform-xform-cpp.html -- 36.2 Кб -- 11.07.1998
Похожие документы

1011. Qt Toolkit - connect/connect.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** ******************************************************* ... */ #include qwidget.h #include qpainter.h #include qapplication.h #include stdlib.h const int MAXPOINTS = 2000; // maximum number of points const int MAXCOLORS = 40; // // ConnectWidget - draws connected lines // class ConnectWidget : public QWidget { public: ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/connect-connect-cpp.html -- 6.9 Кб -- 11.07.1998
Похожие документы

1012. Qt Toolkit - dclock/dclock.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #ifndef DCLOCK _H #define DCLOCK _H #include qlcdnumber.h class DigitalClock : public QLCDNumber // digital clock widget { Q_OBJECT public: DigitalClock ( QWidget *parent=0, const char *name=0 ); protected: // event handlers void timerEvent( QTimerEvent * ); ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/dclock-dclock-cpp.html -- 6.9 Кб -- 11.07.1998
Похожие документы

1013. Qt Toolkit - desktop/desktop.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** ******************************************************* ... #include qpainter.h #include qapplication.h #include stdio.h static double seed = 0.353535353535; static const int KINDA_RAND_MAX = 32767; static int kindaRand() { seed = seed*147; seed = seed - (double) (( int ) seed); return ( int ) ( seed*(KINDA_RAND_MAX + 1) ); } static int velocity( ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/desktop-desktop-cpp.html -- 15.2 Кб -- 11.07.1998
Похожие документы

1014. Qt Toolkit - dirview/dirview.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #ifndef DIRVIEW _H #define DIRVIEW _H # include qlistview.h # include qstring.h # include qfile.h class Directory : public QListViewItem { public: Directory ( QListView * parent ); Directory ( Directory * parent, const char * ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/dirview-dirview-cpp.html -- 7.0 Кб -- 11.07.1998
Похожие документы

1015. Qt Toolkit - drawdemo/drawdemo.cpp example file
This example demontrates several drawing functions and printer output. ... DrawThing ourDrawFunctions[] = { { drawColorWheel, Draw color wheel }, { drawFonts, Draw fonts }, { drawShapes, Draw shapes }, { drawPathText, Draw path text }, { 0, 0 } }; // // DrawView has installable draw routines, just add a function pointer // and a text in the table above. // class DrawView : public QWindow { Q_OBJECT public: DrawView (); public slots: void updateIt( int ); ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/drawdemo-drawdemo-cpp.html -- 15.4 Кб -- 11.07.1998
Похожие документы

1016. Qt Toolkit - forever/forever.cpp example file
This example continuously draws rectangles in a window and has another widget that counts the number of rectangles that are drawn per second. Id: forever.cpp,v 2.4 1998/06/16 11:39:32 warwick Exp $ ** ** Copyright (C) 1992-1998 Troll Tech AS. ... This file is part of an example program for Qt. ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/forever-forever-cpp.html -- 7.4 Кб -- 11.07.1998
Похожие документы

1017. Qt Toolkit - grapher/grapher.cpp example file
... Since the widget is a QNPWidget, it can be used as a plugin window, // returned by Grapher ::newWindow() below. // class Graph : public QNPWidget { Q_OBJECT public: // Constructs a Graph to display a GraphModel // Graph (GraphModel ); ~ Graph (); // Two styles are available - Pie and Bar graph // enum Style { Pie, Bar }; static const char* styleName[]; void setStyle(Style); void setStyle(const char*); // Timer event processing rotates the pie ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/grapher-grapher-cpp.html -- 24.5 Кб -- 11.07.1998
Похожие документы

1018. Qt Toolkit - hello/hello.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #ifndef HELLO _H #define HELLO _H # include qwidget.h class Hello : public QWidget { Q_OBJECT public: Hello ( const char *text, QWidget *parent=0, const char *name=0 ); signals: void clicked(); protected: void mouseReleaseEvent( QMouseEvent * ); ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/hello-hello-cpp.html -- 6.9 Кб -- 11.07.1998
Похожие документы

1019. Qt Toolkit - life/life.cpp example file
... This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #ifndef LIFE _H #define LIFE _H #include qframe.h class LifeWidget : public QFrame { Q_OBJECT public: LifeWidget( QWidget *parent = 0, const char *name = 0 ); void setPoint( int i, int j ); int maxCol() { return maxi; } int maxRow() { return maxj; } public slots: ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/life-life-cpp.html -- 9.2 Кб -- 11.07.1998
Похожие документы

1020. Qt Toolkit - mainlyMotif/editor.cpp example file
This example shows two simple text editors, with most of the program written in Motif. ... They are bound together in a Motif form widget . # include qxt.h # include qmultilinedit.h # include qpainter.h # include qmessagebox.h # include X11/Shell.h # include X11/StringDefs.h # include Xm/Form.h # include Xm/Text.h static const char* QTEDMSG = This is a Qt widget .\nIt is a QMultiLineEdit. ; static const char* XTEDMSG = This is an Xt ...
[ Сохраненная копия ]  Ссылки http://rtm-cs.sinp.msu.ru/manual/qt/mainlyMotif-editor-cpp.html -- 5.4 Кб -- 11.07.1998
Похожие документы

В начало ] Пред. | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования