]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/registry.h
Added wxHelpControllerHtml, derived from wxHtmlHelpControllerBase. API like
[wxWidgets.git] / include / wx / msw / registry.h
index 3bdce82bcab54694521a60ced59fe1ea0c9a7216..693207b3fd31a4c6f9d2a4ab69ab6ee3b9568136 100644 (file)
@@ -187,11 +187,15 @@ public:
 
   // query existence of a key/value
     // return true if value exists
-  bool  HasValue(const wxChar *szKey) const;
+  bool HasValue(const wxChar *szKey) const;
     // return true if given subkey exists
-  bool  HasSubKey(const wxChar *szKey) const;
+  bool HasSubKey(const wxChar *szKey) const;
     // return true if any subkeys exist
-  bool  HasSubkeys() const;
+  bool HasSubkeys() const;
+    // return true if any values exist
+  bool HasValues() const;
+    // return true if the key is empty (nothing under this key)
+  bool IsEmpty() const { return !HasSubkeys() && !HasValues(); }
 
   // enumerate values and subkeys
   bool  GetFirstValue(wxString& strValueName, long& lIndex);