kdeprint Library API Documentation

cupslist.h

00001 /* 00002 * This file is part of the KDE libraries 00003 * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be> 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Library General Public 00007 * License version 2 as published by the Free Software Foundation. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Library General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Library General Public License 00015 * along with this library; see the file COPYING.LIB. If not, write to 00016 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00017 * Boston, MA 02111-1307, USA. 00018 **/ 00019 00020 #ifndef CUPSLIST_H 00021 #define CUPSLIST_H 00022 00023 #include <qwidget.h> 00024 #include <qstringlist.h> 00025 00026 class QPushButton; 00027 class QListView; 00028 class QListViewItem; 00029 00030 class CupsListBox : public QWidget 00031 { 00032 Q_OBJECT; 00033 public: 00034 CupsListBox(QWidget *parent = 0, const char *name = 0); 00035 CupsListBox(int columns, QWidget *parent = 0, const char *name = 0); 00036 ~CupsListBox(); 00037 00038 QString text(int index, int column = 0) const; 00039 void insertItem(const QString& str, int index = -1); 00040 void insertItem(const QStringList& strs, int index = -1); 00041 void setAddMessage(const QString& msg, int index = -1); 00042 int count() const; 00043 void setColumnText(int column, const QString& txt); 00044 00045 protected slots: 00046 void addClicked(); 00047 void removeClicked(); 00048 00049 protected: 00050 void createView(int columns); 00051 void createLayout(); 00052 void createButtons(); 00053 void init(int columns); 00054 QListViewItem* findItemAtIndex(int i) const; 00055 00056 private: 00057 QListView *list_; 00058 QPushButton *add_; 00059 QPushButton *remove_; 00060 QStringList addmsg_; 00061 int columns_; 00062 }; 00063 00064 #endif
KDE Logo
This file is part of the documentation for kdeprint Library Version 3.2.3.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Fri Aug 20 09:49:59 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003