Added filesearch mvc
[findit] / src / mvc / models / filesearch.py
diff --git a/src/mvc/models/filesearch.py b/src/mvc/models/filesearch.py
new file mode 100755 (executable)
index 0000000..facb61a
--- /dev/null
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+# -*-coding: utf-8 -*-
+# vim: sw=4 ts=4 expandtab ai
+# pylint: disable-msg=C0301
+
+from gtkmvc import Model
+
+
+class FilesearchModel(Model):
+
+    # observable properties
+    __properties__ = {
+        'quantity'   : 10,
+        'start_path' : '\\',
+        'stopit'     : False,
+        }
+
+    def __init__(self):
+        Model.__init__(self)
+        return
+
+    pass # end of class