00001 /********************************************************************** 00002 ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 00003 ** 00004 ** This file is part of the Qtopia Environment. 00005 ** 00006 ** This file may be distributed and/or modified under the terms of the 00007 ** GNU General Public License version 2 as published by the Free Software 00008 ** Foundation and appearing in the file LICENSE.GPL included in the 00009 ** packaging of this file. 00010 ** 00011 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00012 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00013 ** 00014 ** See http://www.trolltech.com/gpl/ for GPL licensing information. 00015 ** 00016 ** Contact info@trolltech.com if any conditions of this licensing are 00017 ** not clear to you. 00018 ** 00019 **********************************************************************/ 00020 00021 00022 // 00023 // DO NOT ATTEMPT TO USE THIS CLASS 00024 // 00025 00026 00027 00028 #ifndef LNKPROPERTIES_H 00029 #define LNKPROPERTIES_H 00030 #include <qstringlist.h> 00031 #include <qdialog.h> 00032 00033 class AppLnk; 00034 class QListViewItem; 00035 class DocLnk; 00036 00037 class LnkPropertiesBase; 00038 00039 class LnkProperties : public QDialog 00040 { 00041 Q_OBJECT 00042 00043 public: 00044 // WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT 00045 // have this class. 00046 #ifdef QTOPIA_INTERNAL_FSLP 00047 LnkProperties( AppLnk* lnk, QWidget* parent = 0 ); 00048 ~LnkProperties(); 00049 #endif 00050 00051 void done(int); 00052 private slots: 00053 void beamLnk(); 00054 void unlinkLnk(); 00055 void duplicateLnk(); 00056 00057 signals: 00058 void select(const AppLnk *); 00059 00060 private: 00061 void setupLocations(); 00062 bool moveLnk(); 00063 bool copyFile( DocLnk &newdoc ); 00064 00065 AppLnk* lnk; 00066 int fileSize; 00067 int currentLocation; 00068 QStringList locations; 00069 LnkPropertiesBase *d; 00070 }; 00071 00072 #endif // LNKPROPERTIES_H
1.4.2