┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/viewproperties.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-11-21 06:02:05 +0000
committerPeter Penz <[email protected]>2006-11-21 06:02:05 +0000
commit5252c12db4929886dbe502013e0a1fee6500f568 (patch)
tree589d970fd03a9ce4b524f1cc020d980a3a11bdd8 /src/viewproperties.h
commited initial version of Dolphin
svn path=/trunk/playground/utils/dolphin/; revision=606622
Diffstat (limited to 'src/viewproperties.h')
-rw-r--r--src/viewproperties.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/src/viewproperties.h b/src/viewproperties.h
new file mode 100644
index 000000000..1524707f8
--- /dev/null
+++ b/src/viewproperties.h
@@ -0,0 +1,87 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Peter Penz *
+ * *
+ * This program 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. *
+ * *
+ * This program 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 this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+
+#ifndef VIEWPROPERTIES_H
+#define VIEWPROPERTIES_H
+
+#include <dolphinview.h>
+#include <kurl.h>
+#include <qdatetime.h>
+
+#include "directoryviewpropertysettings.h"
+
+class QFile;
+
+/**
+ * @short Maintains the view properties like 'view mode' or 'show hidden files' for a directory.
+ *
+ * The view properties are automatically stored inside
+ * the directory as hidden file called '.dolphinview'. To read out the view properties
+ * just construct an instance by passing the URL of the directory:
+ * \code
+ * ViewProperties props(KUrl("/home/peter/Documents"));
+ * const DolphinView::Mode mode = props.viewMode();
+ * const bool showHiddenFiles = props.isShowHiddenFilesEnabled();
+ * \endcode
+ * When modifying a view property, the '.dolphinview' file is automatically updated
+ * inside the destructor.
+ *
+ * @author Peter Penz
+ */
+// TODO: provide detailed design description, as mapping the user model to
+// the physical modal is not trivial.
+class ViewProperties
+{
+public:
+ ViewProperties(KUrl url);
+ virtual ~ViewProperties();
+
+ void setViewMode(DolphinView::Mode mode);
+ DolphinView::Mode viewMode() const;
+
+ void setShowHiddenFilesEnabled(bool show);
+ bool isShowHiddenFilesEnabled() const;
+
+ void setSorting(DolphinView::Sorting sorting);
+ DolphinView::Sorting sorting() const;
+
+ void setSortOrder(Qt::SortOrder sortOrder);
+ Qt::SortOrder sortOrder() const;
+
+ void setValidForSubDirs(bool valid);
+ bool isValidForSubDirs() const;
+
+ void setAutoSaveEnabled(bool autoSave);
+ bool isAutoSaveEnabled() const;
+
+ void updateTimeStamp();
+ void save();
+
+ ViewProperties& operator = (const ViewProperties& props);
+
+private:
+ bool m_changedProps;
+ bool m_autoSave;
+ bool m_subDirValidityHidden;
+ QString m_filepath;
+ ViewPropertySettings* m_node;
+};
+
+#endif