XWare Ïîèñê ïî èíôîðìàöèîííûì ðåñóðñàì ÌÃÓ English Russian
       
       Òî÷íàÿ ôîðìà ñëîâ   Î ïðîåêòå   Ñàéòû   Ïîìîùü
Ïîèñê ïî:rtm-cs.sinp.msu.ru   - Ïîèñêàòü ïî âñåì ñåðâåðàì
Íà ýòîé ñòðàíèöå ïðèâåäåíû âñå ñòðàíèöû ñåðâåðà rtm-cs.sinp.msu.ru ,êîòîðûå ìû èíäåêñèðóåì. Ïîêàçàíû äîêóìåíòû 901 - 920 èç 1170.

 íà÷àëî ] Ïðåä. | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | Ñëåä. êîíåö ]

Óïîðÿäî÷èòü ïî: URL  |  äàòå èçìåíåíèÿ
901. Qt Toolkit - QPopupMenu Class
The QPopupMenu class provides a popup menu widget. ... QPopupMenu  ( QWidget * parent=0, const char * name=0 )  . ... void  popup  ( const QPoint & pos, int indexAtPoint = 0 )  . virtual void  updateItem  ( int id )  . ... virtual void  setFont  ( const QFont & )  . ... virtual int  cellHeight  ( int )  . virtual int  cellWidth  ( int )  . virtual void  paintCell  ( QPainter *, int, int )  . ... Reimplements QWidget::setFont () to be able to refresh the popup menu when its font changes. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qpopupmenu.html -- 15.3 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

902. Qt Toolkit - QProgressBar Class
The QProgressBar widget provides a horizontal progress bar. ... Inherits QFrame . ... QProgressBar  ( QWidget * parent=0, const char * name=0, WFlags f=0 )  . QProgressBar  ( int totalSteps, QWidget * parent=0, const char * name=0, WFlags f=0 )  . int  totalSteps  () const . int  progress  () const . ... virtual bool  setIndicator  ( QString & progress_str, int progress, int totalSteps )  . ... See also: QProgressDialog and GUI Design Handbook: Progress Indicator . ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qprogressbar.html -- 8.3 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

903. Qt Toolkit - QProgressDialog Class
... QProgressDialog  ( QWidget * parent=0, const char * name=0, bool modal=FALSE, WFlags f=0 )  . ... void  cancel  ()  . ... A progress dialog is used to give the user an indication of how long an operation is going to take to perform, and to reassure them that the application has not frozen. ... Warning: If the progress dialog is modal (see QProgressDialog::QProgressDialog ()), this function calls QApplication::processEvents (), so take care that this does not cause undesirable re-entrancy to your...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qprogressdialog.html -- 14.4 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

904. Qt Toolkit - QPtrDict Class
The QPtrDict class is a template class that provides a dictionary based on void* keys. ... QPtrDict  ( const QPtrDict<type> & dict )  . ... void  insert  ( void * key, const type * item )  . void  replace  ( void * key, const type * item )  . ... A dictionary is a collection that associates an item with a key. ... The dictionary in our example maps int* keys to char* items. ... Equivalent to: QPtrDict <char> dict; ... if ( dict. find (key) ) dict. remove ( key ); dict. insert ( key, item ); . ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qptrdict.html -- 15.4 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

905. Qt Toolkit - QPtrDictIterator Class
The QPtrDictIterator class provides an iterator for QPtrDict collections. ... QPtrDictIterator  ()  . ... Define a template instance QPtrDictIterator<X> to create a dictionary iterator that operates on QPtrDict<X> (dictionary of X*). ... Returns a pointer to the current iterator item. ... If the current iterator item was the last item in the dictionary or if it was null, null is returned. ... Sets the current iterator item to point to the first item in the dictionary and returns a pointer to the item. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qptrdictiterator.html -- 8.6 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

906. Qt Toolkit - QQueue Class
The QQueue class is a template class that provides a queue. ... QQueue  ( const QQueue<type> & queue )  . ... QQueue<type>&  operator=  ( const QQueue<type> & queue )  . bool  autoDelete  () const . ... bool  isEmpty  () const . void  enqueue  ( const type * d )  . ... A stack is a collection that can be used to enqueue and dequeue items. ... Returns a reference to the first item in the queue. ... Last in, last out. ... Assigns queue to this queue and returns a reference to this queue. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qqueue.html -- 6.5 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

907. Qt Toolkit - QRect Class
The QRect class defines a rectangle in the plane. ... QRect  ( const QPoint & topleft, const QPoint & bottomright )  . ... QRect  ( int left, int top, int width, int height )  . ... int  left  () const . int  top  () const . ... int  x  () const . ... Constructs a rectangle with topLeft as the top left corner and size as the rectangle size. ... Returns the bottom coordinate of the rectangle. ... Returns the bottom left position of the rectangle. ... Returns the top left position of the rectangle. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qrect.html -- 29.4 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

908. Qt Toolkit - QRegion Class
The QRegion class specifies a clip region for a painter. ... QRegion  ()  . ... QRegion  ( const QRect &, RegionType = Rectangle )  . QRegion  ( const QPointArray &, bool winding=FALSE )  . ... bool  isEmpty  () const . ... Returns TRUE if the region contains the rectangle r, or FALSE if r is outside the region. Returns a region which is this region XOR r. Returns a region which is the intersection of this region and r. Returns TRUE if the region is empty, or FALSE if it is non-empty. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qregion.html -- 12.4 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

909. Qt Toolkit - QScrollBar Class
The QScrollBar widget provides a vertical or horizontal scroll bar. ... Inherits QWidget and QRangeControl . ... QScrollBar  ( int minValue, int maxValue, int LineStep, int PageStep, int value, Orientation, QWidget * parent=0, const char * name=0 )  . ... valueChanged () - emitted when the scroll bar's value has changed. sliderPressed () - emitted when the user starts to drag the slider . ... This signal is emitted when the scroll bar value is changed, with the new scroll bar value as an argument. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qscrollbar.html -- 18.0 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

910. Qt Toolkit - QScrollView Class
The QScrollView widget provides a scrolling area with on-demand scrollbars. ... QScrollView  ( QWidget * parent=0, const char * name=0, WFlags f=0 )  . ... virtual void  setResizePolicy  ( ResizePolicy )  . ... void  addChild  ( QWidget * child )  . ... virtual void  addChild  ( QWidget * child, int x, int y )  . virtual void  moveChild  ( QWidget * child, int x, int y )  . ... virtual void  drawContentsOffset  ( QPainter *, int ox, int oy, int cx, int cy, int cw, int ch )  . ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qscrollview.html -- 26.3 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

911. Qt Toolkit - QSemiModal Class
The QSemiModal class is the base class of semi-modal dialog windows. ... Inherits QWidget . ... QSemiModal  ( QWidget * parent=0, const char * name=0, bool modal=FALSE, WFlags f=0 )  . ... virtual void  show  ()  . virtual void  move  ( int x, int y )  . ... virtual void  setGeometry  ( int x, int y, int w, int h )  . ... Reimplements QWidget::move () for internal purposes. ... Reimplements QWidget::resize () for internal purposes. ... Reimplements QWidget::setGeometry () for internal purposes. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qsemimodal.html -- 6.9 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

912. Qt Toolkit - QSignal Class
... Inherits QObject . ... Example: #include <qsignal.h> class MyClass { public: MyClass(); ~MyClass(); void doSomething(); void connect( QObject *receiver, const char *member ); private: QSignal *sig; }; MyClass::MyClass() { sig = new QSignal ; } MyClass::~MyClass() { delete sig; } void MyClass::doSomething() { // ... does something sig-> activate (); // activates the signal } void MyClass::connect( QObject *receiver, const char *member ) { sig-> connect ( receiver, member ); } . ... Emits the signal. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qsignal.html -- 7.5 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

913. Qt Toolkit - QSignalMapper Class
A QSignalMapper object bundles signals from identifiable senders. ... Inherits QObject . ... QSignalMapper  ( QObject * parent, const char * name=0 )  . ... void  setMapping  ( const QObject * sender, int identifier )  . void  setMapping  ( const QObject * sender, const char * identifier )  . void  removeMappings  ( const QObject * sender )  . void  map  ()  . ... Adds a mapping such that when map () is signalled from the given sender, the signal mapper(identifier) is emitted. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qsignalmapper.html -- 6.1 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

914. Qt Toolkit - QSlider Class
The QSlider widget provides a vertical or horizontal slider. ... QSlider  ( QWidget * parent=0, const char * name=0 )  . ... QSlider  ( int minValue, int maxValue, int step, int value, Orientation, QWidget * parent=0, const char * name=0 )  . ... virtual void  setPalette  ( const QPalette & )  . ... minValue is the minimum slider value. maxValue is the maximum slider value. step is the page step value. value is the initial value. orientation must be QSlider::Vertical or QSlider::Horizontal. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qslider.html -- 17.8 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

915. Qt Toolkit - QSocketNotifier Class
The QSocketNotifer class provides support for socket callbacks. ... There are three types of socket notifiers (read, write and exception) and you must specify one of these in the constructor. ... socket is the socket to be monitored. type specifies the socket operation to be detected; QSocketNotifier::Read, QSocketNotifier::Write or QSocketNotifier::Exception. ... Returns the socket event type specified to the constructor; QSocketNotifier::Read, QSocketNotifier::Write or QSocketNotifier::Exception. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qsocketnotifier.html -- 10.6 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

916. Qt Toolkit - QSplitter Class
QSplitter implements a splitter widget. ... QSplitter  ( Orientation, QWidget * parent=0, const char * name=0 )  . ... A splitter lets the user control the size of child widgets by dragging the boundary between the children. ... Use setResizeMode () to specify that a widget should keep its size when the splitter is resized. QSplitter normally resizes the children only at the end of a resize operation, but if you call setOpaqueResize ( TRUE ), the widgets are resized as often as possible. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qsplitter.html -- 10.9 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

917. Qt Toolkit - QStack Class
The QStack class is a template class that provides a stack. ... QStack  ( const QStack<type> & s )  . ... QStack<type>&  operator=  ( const QStack<type> & s )  . ... type*  top  () const . operator  type*  ()const . ... A stack is a collection that can be used to push and pop items. ... Returns a reference to the top item on the stack (most recently pushed). ... Removes the top item from the stack and returns it. ... Removes the top item from the stack and deletes it if if autoDelete () is TRUE. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qstack.html -- 6.4 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

918. Qt Toolkit - QStatusBar Class
The QStatusBar class provides a horizontal bar suitable for presenting status messages. ... void  clear  ()  . ... Each status message falls into one of three classes: . ... Normal and permanent messages are displayed by creating a widget (typically a QLabel ) and using addWidget () to add this widget to the status bar. ... Adds widget to this status bar, with a width of stretch. widget is permanently visible if permanent is TRUE, and is obscured by temporary messages if permanent is FALSE. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qstatusbar.html -- 8.7 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

919. Qt Toolkit - QStrIList Class
The QStrIList class provides a doubly linked list of char* with case insensitive compare. ... QStrIList  ( bool deepCopies=TRUE )  . ... This class is a QList <char> instance (a list of char*). QStrIList is similar to QStrList except that it is case insensitive. The virtual compareItems () function is reimplemented and does a case insensitive string comparision. ... This file is part of the Qt toolkit , copyright 1995-98 Troll Tech , all rights reserved. ... qstrlist.h: 1998/07/03 . ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qstrilist.html -- 4.0 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

920. Qt Toolkit - QStrList Class
The QStrList class provides a doubly linked list of char*. ... QStrList  ()  . ... QStrList can make deep or shallow copies of the strings that are inserted. A deep copy means to allocate space for the string and then copy the string data into it. ... Constructs an empty list of strings. Will make deep copies of all inserted strings if deepCopies is TRUE, or uses shallow copies if deepCopies is FALSE. ... Only the pointers are copied (shallow copy) if the other list does not use deep copies. ...
[ Ñîõðàíåííàÿ êîïèÿ ]  Ññûëêè http://rtm-cs.sinp.msu.ru/manual/qt/qstrlist.html -- 5.5 Êá -- 11.07.1998
Ïîõîæèå äîêóìåíòû

 íà÷àëî ] Ïðåä. | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | Ñëåä. êîíåö ]

Rambler's Top100 RFBR ßíäåêñ öèòèðîâàíèÿ