Source code repository is hosted at Gitorious from now on.
[emufront] / src / dataobjects / filepathobject.h
index a581238..5c12a18 100644 (file)
@@ -1,23 +1,23 @@
-// EmuFront
-// Copyright 2010 Mikko Keinänen
-//
-// This file is part of EmuFront.
-//
-//
-// EmuFront 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 3 of the License, or
-// (at your option) any later version.
-//
-// EmuFront 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 EmuFront.  If not, see <http://www.gnu.org/licenses/>.
-
-#ifndef FILEPATHOBJECT_H
+/*
+** EmuFront
+** Copyright 2010 Mikko Keinänen
+**
+** This file is part of EmuFront.
+**
+**
+** EmuFront is free software: you can redistribute it and/or modify
+** it under the terms of the GNU General Public License version 2 as published by
+** the Free Software Foundation and appearing in the file gpl.txt included in the
+** packaging of this file.
+**
+** EmuFront 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 EmuFront.  If not, see <http://www.gnu.org/licenses/>.
+*/#ifndef FILEPATHOBJECT_H
 #define FILEPATHOBJECT_H
 
 #include "emufrontfileobject.h"
@@ -27,7 +27,7 @@ class Setup;
 class FilePathObject : public EmuFrontObject
 {
 public:
-    FilePathObject();
+    FilePathObject(int type);
     ~FilePathObject();
     FilePathObject(int id, QString name, int filetype);
     FilePathObject(int id, QString name, int filetype, Setup*);
@@ -39,6 +39,13 @@ public:
     int getType() const;
     void setType(int);
 
+    enum {
+        FilePathType_MediaImageDir = 1,
+        FilePathType_TmpDir,
+        FilePathType_PlatformIconsDir,
+        FilePathType_MediaIconsDir
+    };
+
 private:
     int type;
     Setup *setup;