home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / examples / listbox / listbox.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  1KB  |  49 lines

  1. /****************************************************************************
  2. ** $Id:  qt/listbox.h   3.0.0   edited Jun 22 13:24 $
  3. **
  4. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10.  
  11. #ifndef LISTBOX_H
  12. #define LISTBOX_H
  13.  
  14.  
  15. class QSpinBox;
  16. class QListBox;
  17. class QButtonGroup;
  18.  
  19. #include <qwidget.h>
  20.  
  21.  
  22. class ListBoxDemo: public QWidget
  23. {
  24.     Q_OBJECT
  25. public:
  26.     ListBoxDemo();
  27.     ~ListBoxDemo();
  28.  
  29. private slots:
  30.     void setNumRows();
  31.     void setNumCols();
  32.     void setRowsByHeight();
  33.     void setColsByWidth();
  34.     void setVariableWidth( bool );
  35.     void setVariableHeight( bool );
  36.     void setMultiSelection( bool );
  37.     void sortAscending();
  38.     void sortDescending();
  39.     
  40. private:
  41.     QListBox * l;
  42.     QSpinBox * columns;
  43.     QSpinBox * rows;
  44.     QButtonGroup * bg;
  45. };
  46.  
  47.  
  48. #endif
  49.