From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- .../advanced/kcm_sambaconf/hiddenfileview.h | 140 +++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 filesharing/advanced/kcm_sambaconf/hiddenfileview.h (limited to 'filesharing/advanced/kcm_sambaconf/hiddenfileview.h') diff --git a/filesharing/advanced/kcm_sambaconf/hiddenfileview.h b/filesharing/advanced/kcm_sambaconf/hiddenfileview.h new file mode 100644 index 00000000..c15b772f --- /dev/null +++ b/filesharing/advanced/kcm_sambaconf/hiddenfileview.h @@ -0,0 +1,140 @@ +/*************************************************************************** + hiddenfileview.h - description + ------------------- + begin : Wed Jan 1 2003 + copyright : (C) 2003 by Jan Schäfer + email : janschaefer@users.sourceforge.net + ***************************************************************************/ + +/****************************************************************************** + * * + * This file is part of KSambaPlugin. * + * * + * KSambaPlugin is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * KSambaPlugin is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with KSambaPlugin; if not, write to the Free Software * + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * * + ******************************************************************************/ + +#ifndef _HIDDENFILEVIEW_H_ +#define _HIDDENFILEVIEW_H_ + +#include +#include + +#include "qmultichecklistitem.h" + +class KDirLister; +class QRegExp; +class ShareDlgImpl; +class SambaShare; + +class HiddenListViewItem : public QMultiCheckListItem +{ +Q_OBJECT +public: + HiddenListViewItem( QListView *parent, KFileItem *fi, bool hidden, bool veto, bool vetoOplock ); + ~HiddenListViewItem(); + + virtual void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment); + + KFileItem* getFileItem(); +protected: + KFileItem *_fileItem; +}; + +class KToggleAction; +class KPopupMenu; +class ShareDlgImpl; + + +/** + * Widget which shows a list of files + * from a directory. + * It gets the directory from the SambaShare + * It also interprets the hidden files parameter + * of the SambaShare an offers the possibility of + * selecting the files which should be hidden + **/ +class HiddenFileView : public QObject +{ +Q_OBJECT + +public: + HiddenFileView(ShareDlgImpl* shareDlg, SambaShare* share); + ~HiddenFileView(); + + /** + * Load the values from the share and show them + **/ + void load(); + + /** + * Save changings to the share + **/ + void save(); + +protected: + SambaShare* _share; + ShareDlgImpl* _dlg; + + KDirLister* _dir; + QPtrList _hiddenList; + QPtrList _vetoList; + QPtrList _vetoOplockList; + + KToggleAction* _hiddenActn; + KToggleAction* _vetoActn; + KToggleAction* _vetoOplockActn; + + KPopupMenu* _popup; + + void initListView(); + + QPtrList createRegExpList(const QString & s); + bool matchHidden(const QString & s); + bool matchVeto(const QString & s); + bool matchVetoOplock(const QString & s); + bool matchRegExpList(const QString & s, QPtrList & lst); + + QRegExp* getHiddenMatch(const QString & s); + QRegExp* getVetoMatch(const QString & s); + QRegExp* getRegExpListMatch(const QString & s, QPtrList & lst); + + QPtrList getMatchingItems(const QRegExp & rx); + + void setState(QPtrList & lst,int column, bool b); + void deselect(QPtrList & lst); + + void updateEdit(QLineEdit* edit, QPtrList & lst); + +protected slots: + // slots for KDirListener : + void insertNewFiles(const KFileItemList &newone); + void deleteItem( KFileItem *_fileItem ); + void refreshItems( const KFileItemList& items ); + + void selectionChanged(); + void hiddenChkClicked(bool b); + void vetoChkClicked(bool b); + void vetoOplockChkClicked(bool b); + void checkBoxClicked(QCheckBox* chkBox,KToggleAction* action,QLineEdit* edit,int column,QPtrList &reqExpList,bool b); + void columnClicked(int column); + void showContextMenu(); + void updateView(); + void hideDotFilesChkClicked(bool); + void hideUnreadableChkClicked(bool); + void slotMouseButtonPressed( int button, QListViewItem * item, const QPoint & pos, int c ); +}; + +#endif -- cgit v1.2.1