00001 /*************************************************************************** 00002 * * 00003 * authorlinklistbox.h * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * Read the file COPYING for details. * 00011 * * 00012 * copyright: (C) 2003 by Jan Mueller * 00013 * email: janmueller7@hotmail.com * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef AuthorLinkListBox_h 00018 #define AuthorLinkListBox_h 00019 #include <linklistbox.h> 00020 #include <qvaluelist.h> 00021 00022 class LitUrl; 00023 class LinkListBoxItem; 00024 00025 class AuthorLinkListBox: public LinkListBox { 00026 Q_OBJECT 00027 00028 private: 00029 AuthorLinkListBox(const AuthorLinkListBox&); 00030 AuthorLinkListBox& operator=(const AuthorLinkListBox&); 00031 00032 bool order_modified; 00033 00034 protected slots: 00035 void slotUp(); 00036 void slotDown(); 00037 00038 public: 00039 AuthorLinkListBox(QWidget *parent=0, const char *name=0); 00040 QValueList<LitUrl> authorPos(); 00041 bool modified(); 00042 }; 00043 #endif