aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPGroupNode.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-05-03 12:05:01 +0000
committerstuconnolly <stuart02@gmail.com>2012-05-03 12:05:01 +0000
commit83fa503079f7a049ffab9747b0360046474f3253 (patch)
tree028d0a92e558ba42e796847ab0f68d6e3037fb50 /Source/SPGroupNode.h
parent0d3af5fe7631325e8a892011f0595c76b1ebd49a (diff)
downloadsequelpro-83fa503079f7a049ffab9747b0360046474f3253.tar.gz
sequelpro-83fa503079f7a049ffab9747b0360046474f3253.tar.bz2
sequelpro-83fa503079f7a049ffab9747b0360046474f3253.zip
Add support for saving the state of the connection favorites outline view.
Diffstat (limited to 'Source/SPGroupNode.h')
-rw-r--r--Source/SPGroupNode.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/SPGroupNode.h b/Source/SPGroupNode.h
index 8c4f2e84..0cef04e9 100644
--- a/Source/SPGroupNode.h
+++ b/Source/SPGroupNode.h
@@ -32,6 +32,8 @@
*/
@interface SPGroupNode : NSObject <NSCopying, NSCoding>
{
+ BOOL nodeIsExpanded;
+
NSString *nodeName;
}
@@ -40,6 +42,11 @@
*/
@property (readwrite, retain) NSString *nodeName;
+/**
+ * @property nodeIsExpanded Indicates whether the group node is expanded
+ */
+@property (readwrite, assign) BOOL nodeIsExpanded;
+
- (id)initWithName:(NSString *)name;
+ (SPGroupNode *)groupNodeWithName:(NSString *)name;