1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRegKey class demo
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
29 #include "wx/treectrl.h"
30 #include "wx/config.h"
31 #include "wx/imaglist.h"
32 #include "wx/tokenzr.h"
34 #if wxUSE_CONFIG_NATIVE && defined( __WXMSW__ )
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
43 class RegApp
: public wxApp
49 // ----------------------------------------------------------------------------
50 // image list with registry icons
51 // ----------------------------------------------------------------------------
52 class RegImageList
: public wxImageList
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
72 class RegTreeCtrl
: public wxTreeCtrl
76 RegTreeCtrl(wxWindow
*parent
, wxWindowID id
);
77 virtual ~RegTreeCtrl();
80 void OnDeleteItem (wxTreeEvent
& event
);
81 void OnItemExpanding (wxTreeEvent
& event
);
82 void OnSelChanged (wxTreeEvent
& event
);
84 void OnBeginEdit (wxTreeEvent
& event
);
85 void OnEndEdit (wxTreeEvent
& event
);
87 void OnBeginDrag (wxTreeEvent
& event
);
88 void OnEndDrag (wxTreeEvent
& event
);
90 void OnRightClick (wxMouseEvent
& event
);
91 void OnChar (wxKeyEvent
& event
);
92 void OnIdle (wxIdleEvent
& event
);
94 // forwarded notifications (by the frame)
98 void GoTo(const wxString
& location
);
100 void DeleteSelected();
101 void ShowProperties();
102 void CreateNewKey(const wxString
& strName
);
103 void CreateNewTextValue(const wxString
& strName
);
104 void CreateNewBinaryValue(const wxString
& strName
);
107 bool IsKeySelected() const;
110 // structure describing a registry key/value
111 class TreeNode
: public wxTreeItemData
113 WX_DEFINE_ARRAY_PTR(TreeNode
*, TreeChildren
);
115 RegTreeCtrl
*m_pTree
; // must be !NULL
116 TreeNode
*m_pParent
; // NULL only for the root node
117 wxTreeItemId m_id
; // the id of the tree control item
118 wxString m_strName
; // name of the key/value
119 TreeChildren m_aChildren
; // array of subkeys/values
120 bool m_bKey
; // key or value?
121 wxRegKey
*m_pKey
; // only may be !NULL if m_bKey == true
124 wxTreeItemId
Id() const { return m_id
; }
125 bool IsRoot() const { return m_pParent
== NULL
; }
126 bool IsKey() const { return m_bKey
; }
127 TreeNode
*Parent() const { return m_pParent
; }
135 bool DeleteChild(TreeNode
*child
);
136 void DestroyChildren();
137 const wxChar
*FullName() const;
139 // get the associated key: make sure the pointer is !NULL
140 wxRegKey
& Key() { if ( !m_pKey
) OnExpand(); return *m_pKey
; }
142 // dtor deletes all children
146 wxImageList
*m_imageList
;
147 wxMenu
*m_pMenuPopup
;
151 TreeNode
*m_draggedItem
; // the item being dragged
152 bool m_copyOnDrop
; // if false, then move
154 bool m_restoreStatus
; // after OnItemExpanding()
156 wxString m_nameOld
; // the initial value of item being renamed
158 TreeNode
*GetNode(const wxTreeEvent
& event
)
159 { return (TreeNode
*)GetItemData(event
.GetItem()); }
162 // create a new node and insert it to the tree
163 TreeNode
*InsertNewTreeNode(TreeNode
*pParent
,
164 const wxString
& strName
,
165 int idImage
= RegImageList::ClosedKey
,
166 const wxString
*pstrValue
= NULL
);
168 // add standard registry keys
172 DECLARE_EVENT_TABLE()
175 #endif // #if DO_REGTEST
177 // ----------------------------------------------------------------------------
178 // the main window of our application
179 // ----------------------------------------------------------------------------
180 class RegFrame
: public wxFrame
184 RegFrame(wxFrame
*parent
, const wxChar
*title
, int x
, int y
, int w
, int h
);
188 void OnQuit (wxCommandEvent
& event
);
189 void OnAbout(wxCommandEvent
& event
);
190 void OnTest (wxCommandEvent
& event
);
192 void OnGoTo (wxCommandEvent
& event
);
194 void OnExpand (wxCommandEvent
& event
);
195 void OnCollapse(wxCommandEvent
& event
);
196 void OnToggle (wxCommandEvent
& event
);
197 void OnRefresh (wxCommandEvent
& event
);
199 void OnDelete (wxCommandEvent
& event
);
200 void OnNewKey (wxCommandEvent
& event
);
201 void OnNewText (wxCommandEvent
& event
);
202 void OnNewBinary(wxCommandEvent
& event
);
204 void OnInfo (wxCommandEvent
& event
);
206 DECLARE_EVENT_TABLE()
211 RegTreeCtrl
*m_treeCtrl
;
215 // ----------------------------------------------------------------------------
217 // ----------------------------------------------------------------------------
239 // ----------------------------------------------------------------------------
241 // ----------------------------------------------------------------------------
243 BEGIN_EVENT_TABLE(RegFrame
, wxFrame
)
244 EVT_MENU(Menu_Test
, RegFrame::OnTest
)
245 EVT_MENU(Menu_About
, RegFrame::OnAbout
)
246 EVT_MENU(Menu_Quit
, RegFrame::OnQuit
)
247 EVT_MENU(Menu_GoTo
, RegFrame::OnGoTo
)
248 EVT_MENU(Menu_Expand
, RegFrame::OnExpand
)
249 EVT_MENU(Menu_Collapse
, RegFrame::OnCollapse
)
250 EVT_MENU(Menu_Toggle
, RegFrame::OnToggle
)
251 EVT_MENU(Menu_Refresh
, RegFrame::OnRefresh
)
252 EVT_MENU(Menu_Delete
, RegFrame::OnDelete
)
253 EVT_MENU(Menu_NewKey
, RegFrame::OnNewKey
)
254 EVT_MENU(Menu_NewText
, RegFrame::OnNewText
)
255 EVT_MENU(Menu_NewBinary
,RegFrame::OnNewBinary
)
256 EVT_MENU(Menu_Info
, RegFrame::OnInfo
)
261 BEGIN_EVENT_TABLE(RegTreeCtrl
, wxTreeCtrl
)
262 EVT_TREE_DELETE_ITEM (Ctrl_RegTree
, RegTreeCtrl::OnDeleteItem
)
263 EVT_TREE_ITEM_EXPANDING(Ctrl_RegTree
, RegTreeCtrl::OnItemExpanding
)
264 EVT_TREE_SEL_CHANGED (Ctrl_RegTree
, RegTreeCtrl::OnSelChanged
)
266 EVT_TREE_BEGIN_LABEL_EDIT(Ctrl_RegTree
, RegTreeCtrl::OnBeginEdit
)
267 EVT_TREE_END_LABEL_EDIT (Ctrl_RegTree
, RegTreeCtrl::OnEndEdit
)
269 EVT_TREE_BEGIN_DRAG (Ctrl_RegTree
, RegTreeCtrl::OnBeginDrag
)
270 EVT_TREE_BEGIN_RDRAG (Ctrl_RegTree
, RegTreeCtrl::OnBeginDrag
)
271 EVT_TREE_END_DRAG (Ctrl_RegTree
, RegTreeCtrl::OnEndDrag
)
273 EVT_CHAR (RegTreeCtrl::OnChar
)
274 EVT_RIGHT_DOWN(RegTreeCtrl::OnRightClick
)
275 EVT_IDLE (RegTreeCtrl::OnIdle
)
280 // ============================================================================
282 // ============================================================================
284 // ----------------------------------------------------------------------------
286 // ----------------------------------------------------------------------------
288 // create the "registry operations" menu
289 wxMenu
*CreateRegistryMenu()
291 wxMenu
*pMenuNew
= new wxMenu
;
292 pMenuNew
->Append(Menu_NewKey
, _T("&Key"), _T("Create a new key"));
293 pMenuNew
->AppendSeparator();
294 pMenuNew
->Append(Menu_NewText
, _T("&Text value"), _T("Create a new text value"));
295 pMenuNew
->Append(Menu_NewBinary
, _T("&Binary value"), _T("Create a new binary value"));
297 wxMenu
*pMenuReg
= new wxMenu
;
298 pMenuReg
->Append(Menu_New
, _T("&New"), pMenuNew
);
299 pMenuReg
->Append(Menu_Delete
, _T("&Delete..."), _T("Delete selected key/value"));
300 pMenuReg
->AppendSeparator();
301 pMenuReg
->Append(Menu_GoTo
, _T("&Go to...\tCtrl-G"), _T("Go to registry key"));
302 pMenuReg
->Append(Menu_Expand
, _T("&Expand"), _T("Expand current key"));
303 pMenuReg
->Append(Menu_Collapse
, _T("&Collapse"), _T("Collapse current key"));
304 pMenuReg
->Append(Menu_Toggle
, _T("&Toggle"), _T("Toggle current key"));
305 pMenuReg
->AppendSeparator();
306 pMenuReg
->Append(Menu_Refresh
, _T("&Refresh"), _T("Refresh the subtree"));
307 pMenuReg
->AppendSeparator();
308 pMenuReg
->Append(Menu_Info
, _T("&Properties"),_T("Information about current selection"));
313 // ----------------------------------------------------------------------------
315 // ----------------------------------------------------------------------------
316 IMPLEMENT_APP(RegApp
)
318 // `Main program' equivalent, creating windows and returning main app frame
319 bool RegApp::OnInit()
321 if ( !wxApp::OnInit() )
324 // create the main frame window and show it
325 RegFrame
*frame
= new RegFrame(NULL
, _T("wxRegTest"), 50, 50, 600, 350);
333 // ----------------------------------------------------------------------------
335 // ----------------------------------------------------------------------------
337 RegFrame::RegFrame(wxFrame
*parent
, const wxChar
*title
, int x
, int y
, int w
, int h
)
338 : wxFrame(parent
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
))
340 // this reduces flicker effects
341 SetBackgroundColour(wxColour(255, 255, 255));
345 SetIcon(wxIcon(_T("app_icon")));
349 wxMenu
*pMenuFile
= new wxMenu
;
350 pMenuFile
->Append(Menu_Test
, _T("Te&st"), _T("Test key creation"));
351 pMenuFile
->AppendSeparator();
352 pMenuFile
->Append(Menu_About
, _T("&About..."), _T("Show an extraordinarly beautiful dialog"));
353 pMenuFile
->AppendSeparator();
354 pMenuFile
->Append(Menu_Quit
, _T("E&xit"), _T("Quit this program"));
356 wxMenuBar
*pMenu
= new wxMenuBar
;
357 pMenu
->Append(pMenuFile
, _T("&File"));
358 pMenu
->Append(CreateRegistryMenu(), _T("&Registry"));
362 // create child controls
363 // ---------------------
364 m_treeCtrl
= new RegTreeCtrl(this, Ctrl_RegTree
);
368 // create the status line
369 // ----------------------
371 #endif // wxUSE_STATUSBAR
374 RegFrame::~RegFrame()
377 // this makes deletion of it *much* quicker
382 void RegFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
387 void RegFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
389 wxMessageDialog
dialog(this,
390 _T("wxRegistry sample\n")
391 _T("(c) 1998, 2000 Vadim Zeitlin"),
392 _T("About wxRegTest"), wxOK
);
397 void RegFrame::OnTest(wxCommandEvent
& WXUNUSED(event
))
400 m_treeCtrl
->OnMenuTest();
404 void RegFrame::OnGoTo(wxCommandEvent
& WXUNUSED(event
))
406 static wxString s_location
= _T("HKEY_CURRENT_USER\\Software\\wxWidgets");
408 wxString location
= wxGetTextFromUser(
409 _T("Enter the location to go to:"),
410 _T("wxRegTest question"),
417 s_location
= location
;
419 m_treeCtrl
->GoTo(location
);
423 void RegFrame::OnExpand(wxCommandEvent
& WXUNUSED(event
))
426 m_treeCtrl
->Expand(m_treeCtrl
->GetSelection());
430 void RegFrame::OnCollapse(wxCommandEvent
& WXUNUSED(event
))
433 m_treeCtrl
->Collapse(m_treeCtrl
->GetSelection());
437 void RegFrame::OnToggle(wxCommandEvent
& WXUNUSED(event
))
440 m_treeCtrl
->Toggle(m_treeCtrl
->GetSelection());
444 void RegFrame::OnRefresh(wxCommandEvent
& WXUNUSED(event
))
447 m_treeCtrl
->DoRefresh();
451 void RegFrame::OnDelete(wxCommandEvent
& WXUNUSED(event
))
454 m_treeCtrl
->DeleteSelected();
458 void RegFrame::OnNewKey(wxCommandEvent
& WXUNUSED(event
))
461 if ( m_treeCtrl
->IsKeySelected() )
463 m_treeCtrl
->CreateNewKey(
464 wxGetTextFromUser(_T("Enter the name of the new key")));
469 void RegFrame::OnNewText(wxCommandEvent
& WXUNUSED(event
))
472 if ( m_treeCtrl
->IsKeySelected() )
474 m_treeCtrl
->CreateNewTextValue(
475 wxGetTextFromUser(_T("Enter the name for the new text value")));
480 void RegFrame::OnNewBinary(wxCommandEvent
& WXUNUSED(event
))
483 if ( m_treeCtrl
->IsKeySelected() )
485 m_treeCtrl
->CreateNewBinaryValue(
486 wxGetTextFromUser(_T("Enter the name for the new binary value")));
491 void RegFrame::OnInfo(wxCommandEvent
& WXUNUSED(event
))
494 m_treeCtrl
->ShowProperties();
498 // ----------------------------------------------------------------------------
500 // ----------------------------------------------------------------------------
501 RegImageList::RegImageList() : wxImageList(16, 16, true)
503 // should be in sync with enum RegImageList::RegIcon
504 static const wxChar
*aszIcons
[] = { _T("key1"),_T("key2"),_T("key3"),_T("value1"),_T("value2") };
505 wxString str
= _T("icon_");
506 for ( unsigned int n
= 0; n
< WXSIZEOF(aszIcons
); n
++ )
508 Add(wxIcon(str
+ aszIcons
[n
], wxBITMAP_TYPE_ICO_RESOURCE
));
514 // ----------------------------------------------------------------------------
516 // ----------------------------------------------------------------------------
518 // create a new tree item and insert it into the tree
519 RegTreeCtrl::TreeNode
*RegTreeCtrl::InsertNewTreeNode(TreeNode
*pParent
,
520 const wxString
& strName
,
522 const wxString
*pstrValue
)
524 // create new item & insert it
525 TreeNode
*pNewNode
= new TreeNode
;
526 pNewNode
->m_pTree
= this;
527 pNewNode
->m_pParent
= pParent
;
528 pNewNode
->m_strName
= strName
;
529 pNewNode
->m_bKey
= pstrValue
== NULL
;
530 pNewNode
->m_pKey
= NULL
;
533 pNewNode
->m_id
= AppendItem(pParent
->Id(),
534 pNewNode
->IsKey() ? strName
: *pstrValue
,
539 pNewNode
->m_id
= AddRoot(strName
);
542 wxASSERT_MSG( pNewNode
->m_id
, wxT("can't create tree control item!"));
544 // save the pointer in the item
545 SetItemData(pNewNode
->m_id
, pNewNode
);
547 // add it to the list of parent's children
548 if ( pParent
!= NULL
)
550 pParent
->m_aChildren
.Add(pNewNode
);
553 if ( pNewNode
->IsKey() )
555 SetItemHasChildren(pNewNode
->Id());
557 if ( !pNewNode
->IsRoot() )
559 // set the expanded icon as well
560 SetItemImage(pNewNode
->Id(),
561 RegImageList::OpenedKey
,
562 wxTreeItemIcon_Expanded
);
569 RegTreeCtrl::RegTreeCtrl(wxWindow
*parent
, wxWindowID id
)
570 : wxTreeCtrl(parent
, id
, wxDefaultPosition
, wxDefaultSize
,
571 wxTR_HAS_BUTTONS
| wxTR_EDIT_LABELS
| wxSUNKEN_BORDER
)
574 m_draggedItem
= NULL
;
575 m_restoreStatus
= false;
577 // create the image list
578 // ---------------------
579 m_imageList
= new RegImageList
;
580 SetImageList(m_imageList
);
584 m_pRoot
= InsertNewTreeNode(NULL
, _T("Registry Root"), RegImageList::Root
);
588 m_pMenuPopup
= CreateRegistryMenu();
591 RegTreeCtrl::~RegTreeCtrl()
594 // delete m_pRoot; -- this is done by the tree now
598 void RegTreeCtrl::AddStdKeys()
600 for ( unsigned int ui
= 0; ui
< wxRegKey::nStdKeys
; ui
++ )
602 InsertNewTreeNode(m_pRoot
, wxRegKey::GetStdKeyName(ui
));
606 // ----------------------------------------------------------------------------
608 // ----------------------------------------------------------------------------
610 void RegTreeCtrl::OnIdle(wxIdleEvent
& WXUNUSED(event
))
612 if ( m_restoreStatus
)
614 // restore it after OnItemExpanding()
615 wxLogStatus(wxT("Ok"));
616 wxSetCursor(*wxSTANDARD_CURSOR
);
618 m_restoreStatus
= false;
622 void RegTreeCtrl::OnRightClick(wxMouseEvent
& event
)
625 wxTreeItemId lId
= HitTest(wxPoint(event
.GetX(), event
.GetY()), iFlags
);
626 if ( iFlags
& wxTREE_HITTEST_ONITEMLABEL
)
628 // select the item first
631 //else: take the currently selected item if click not on item
633 PopupMenu(m_pMenuPopup
, event
.GetX(), event
.GetY());
637 void RegTreeCtrl::OnDeleteItem(wxTreeEvent
& WXUNUSED(event
))
641 // test the key creation functions
642 void RegTreeCtrl::OnMenuTest()
644 wxTreeItemId lId
= GetSelection();
645 TreeNode
*pNode
= (TreeNode
*)GetItemData(lId
);
647 wxCHECK_RET( pNode
!= NULL
, wxT("tree item without data?") );
649 if ( pNode
->IsRoot() )
651 wxLogError(wxT("Can't create a subkey under the root key."));
655 if ( !pNode
->IsKey() )
657 wxLogError(wxT("Can't create a subkey under a value!"));
661 wxRegKey
key1(pNode
->Key(), _T("key1"));
664 wxRegKey
key2a(key1
, _T("key2a")), key2b(key1
, _T("key2b"));
665 if ( key2a
.Create() && key2b
.Create() )
667 // put some values under the newly created keys
668 key1
.SetValue(wxT("first_term"), _T("10"));
669 key1
.SetValue(wxT("second_term"), _T("7"));
670 key2a
= _T("this is the unnamed value");
671 key2b
.SetValue(wxT("sum"), 17);
675 wxLogStatus(wxT("Test keys successfully added."));
680 wxLogError(wxT("Creation of test keys failed."));
683 void RegTreeCtrl::OnChar(wxKeyEvent
& event
)
685 switch ( event
.GetKeyCode() )
692 if ( event
.AltDown() )
703 void RegTreeCtrl::OnSelChanged(wxTreeEvent
& event
)
706 wxFrame
*pFrame
= (wxFrame
*) wxWindow::GetParent();
707 pFrame
->SetStatusText(GetNode(event
)->FullName(), 1);
710 #endif // wxUSE_STATUSBAR
713 void RegTreeCtrl::OnItemExpanding(wxTreeEvent
& event
)
715 TreeNode
*pNode
= GetNode(event
);
716 bool bExpanding
= event
.GetKeyCode() == wxTREE_EXPAND_EXPAND
;
718 // expansion might take some time
719 wxSetCursor(*wxHOURGLASS_CURSOR
);
720 wxLogStatus(wxT("Working..."));
721 wxYield(); // to give the status line a chance to refresh itself
722 m_restoreStatus
= true; // some time later...
724 if ( pNode
->IsKey() )
728 // expanding: add subkeys/values
729 if ( !pNode
->OnExpand() )
734 // collapsing: clean up
740 void RegTreeCtrl::OnBeginEdit(wxTreeEvent
& event
)
742 TreeNode
*pNode
= GetNode(event
);
743 if ( pNode
->IsRoot() || pNode
->Parent()->IsRoot() )
745 wxLogStatus(_T("This registry key can't be renamed."));
751 m_nameOld
= pNode
->m_strName
;
755 void RegTreeCtrl::OnEndEdit(wxTreeEvent
& event
)
759 wxString name
= event
.GetLabel();
761 TreeNode
*pNode
= GetNode(event
);
762 if ( pNode
->IsKey() )
764 wxRegKey
& key
= pNode
->Key();
765 ok
= key
.Rename(name
);
769 pNode
= pNode
->Parent();
770 wxRegKey
& key
= pNode
->Key();
772 ok
= key
.RenameValue(m_nameOld
, name
);
777 wxLogError(_T("Failed to rename '%s' to '%s'."),
778 m_nameOld
.c_str(), name
.c_str());
780 #if 0 // MSW tree ctrl doesn't like this at all, it hangs
788 void RegTreeCtrl::OnBeginDrag(wxTreeEvent
& event
)
790 m_copyOnDrop
= event
.GetEventType() == wxEVT_COMMAND_TREE_BEGIN_DRAG
;
792 TreeNode
*pNode
= GetNode(event
);
793 if ( pNode
->IsRoot() || pNode
->Parent()->IsRoot() )
795 wxLogStatus(wxT("This registry key can't be %s."),
796 m_copyOnDrop
? wxT("copied") : wxT("moved"));
800 wxLogStatus(wxT("%s item %s..."),
801 m_copyOnDrop
? wxT("Copying") : wxT("Moving"),
804 m_draggedItem
= pNode
;
810 void RegTreeCtrl::OnEndDrag(wxTreeEvent
& event
)
812 wxCHECK_RET( m_draggedItem
, wxT("end drag without begin drag?") );
814 // clear the pointer anyhow
815 TreeNode
*src
= m_draggedItem
;
816 m_draggedItem
= NULL
;
818 // where are we going to drop it?
819 TreeNode
*dst
= GetNode(event
);
820 if ( dst
&& !dst
->IsKey() )
822 // we need a parent key
826 if ( !dst
|| dst
->IsRoot() )
828 wxLogError(wxT("Can't create a key here."));
833 bool isKey
= src
->IsKey();
834 if ( (isKey
&& (src
== dst
)) ||
835 (!isKey
&& (dst
->Parent() == src
)) ) {
836 wxLogStatus(wxT("Can't copy something on itself"));
841 // remove the "Registry Root\\" from the full name
842 wxString nameSrc
, nameDst
;
843 nameSrc
<< wxString(src
->FullName()).AfterFirst('\\');
844 nameDst
<< wxString(dst
->FullName()).AfterFirst('\\') << '\\'
845 << wxString(src
->FullName()).AfterLast('\\');
847 wxString verb
= m_copyOnDrop
? _T("copy") : _T("move");
848 wxString what
= isKey
? _T("key") : _T("value");
850 if ( wxMessageBox(wxString::Format
852 wxT("Do you really want to %s the %s %s to %s?"),
858 _T("RegTest Confirm"),
859 wxICON_QUESTION
| wxYES_NO
| wxCANCEL
, this) != wxYES
) {
866 wxRegKey
& key
= src
->Key();
867 wxRegKey
keyDst(dst
->Key(), src
->m_strName
);
868 ok
= keyDst
.Create(false);
871 wxLogError(wxT("Key '%s' already exists"), keyDst
.GetName().c_str());
875 ok
= key
.Copy(keyDst
);
878 if ( ok
&& !m_copyOnDrop
)
880 // delete the old key
881 ok
= key
.DeleteSelf();
884 src
->Parent()->Refresh();
890 wxRegKey
& key
= src
->Parent()->Key();
891 ok
= key
.CopyValue(src
->m_strName
, dst
->Key());
892 if ( ok
&& !m_copyOnDrop
)
894 // we moved it, so delete the old one
895 ok
= key
.DeleteValue(src
->m_strName
);
901 wxLogError(wxT("Failed to %s registry %s."),
902 verb
.c_str(), what
.c_str());
910 // ----------------------------------------------------------------------------
911 // TreeNode implementation
912 // ----------------------------------------------------------------------------
913 bool RegTreeCtrl::TreeNode::OnExpand()
915 // we add children only once
916 if ( !m_aChildren
.IsEmpty() )
918 // we've been already expanded
924 // we're the root key
925 m_pTree
->AddStdKeys();
929 if ( Parent()->IsRoot() )
931 // we're a standard key
932 m_pKey
= new wxRegKey(m_strName
);
936 // we're a normal key
937 m_pKey
= new wxRegKey(*(Parent()->m_pKey
), m_strName
);
940 if ( !m_pKey
->Open() )
942 wxLogError(wxT("The key '%s' can't be opened."), FullName());
946 // if we're empty, we shouldn't be expandable at all
949 // enumeration variables
954 // enumerate all subkeys
955 bCont
= m_pKey
->GetFirstKey(str
, l
);
958 m_pTree
->InsertNewTreeNode(this, str
, RegImageList::ClosedKey
);
959 bCont
= m_pKey
->GetNextKey(str
, l
);
961 // we have at least this key...
965 // enumerate all values
966 bCont
= m_pKey
->GetFirstValue(str
, l
);
971 strItem
= _T("<default>");
974 strItem
+= _T(" = ");
976 // determine the appropriate icon
977 RegImageList::Icon icon
;
978 switch ( m_pKey
->GetValueType(str
) )
980 case wxRegKey::Type_String
:
981 case wxRegKey::Type_Expand_String
:
982 case wxRegKey::Type_Multi_String
:
985 icon
= RegImageList::TextValue
;
986 m_pKey
->QueryValue(str
, strValue
);
991 case wxRegKey::Type_None
:
992 // @@ handle the error...
993 icon
= RegImageList::BinaryValue
;
996 case wxRegKey::Type_Dword
:
999 m_pKey
->QueryValue(str
, &l
);
1006 icon
= RegImageList::BinaryValue
;
1009 m_pTree
->InsertNewTreeNode(this, str
, icon
, &strItem
);
1010 bCont
= m_pKey
->GetNextValue(str
, l
);
1012 // we have at least this value...
1018 // this is for the case when our last child was just deleted
1019 wxTreeItemId
theId(Id()); // Temp variable seems necessary for BC++
1020 m_pTree
->Collapse(theId
);
1022 // we won't be expanded any more
1023 m_pTree
->SetItemHasChildren(theId
, false);
1029 void RegTreeCtrl::TreeNode::OnCollapse()
1037 void RegTreeCtrl::TreeNode::Refresh()
1042 wxTreeItemId
theId(Id()); // Temp variable seems necessary for BC++
1043 bool wasExpanded
= m_pTree
->IsExpanded(theId
);
1045 m_pTree
->Collapse(theId
);
1048 m_pTree
->SetItemHasChildren(theId
);
1051 m_pTree
->Expand(theId
);
1056 bool RegTreeCtrl::TreeNode::DeleteChild(TreeNode
*child
)
1058 int index
= m_aChildren
.Index(child
);
1059 wxCHECK_MSG( index
!= wxNOT_FOUND
, false,
1060 wxT("our child in tree should be in m_aChildren") );
1062 m_aChildren
.RemoveAt((size_t)index
);
1065 if ( child
->IsKey() )
1067 // must close key before deleting it
1068 child
->OnCollapse();
1070 ok
= Key().DeleteKey(child
->m_strName
);
1074 ok
= Key().DeleteValue(child
->m_strName
);
1079 wxTreeItemId
theId(child
->Id()); // Temp variable seems necessary for BC++
1080 m_pTree
->Delete(theId
);
1088 void RegTreeCtrl::TreeNode::DestroyChildren()
1090 // destroy all children
1091 size_t nCount
= m_aChildren
.GetCount();
1092 for ( size_t n
= 0; n
< nCount
; n
++ )
1094 wxTreeItemId lId
= m_aChildren
[n
]->Id();
1095 m_pTree
->Delete(lId
);
1098 m_aChildren
.Empty();
1101 RegTreeCtrl::TreeNode::~TreeNode()
1106 const wxChar
*RegTreeCtrl::TreeNode::FullName() const
1108 static wxString s_strName
;
1112 return wxT("Registry Root");
1116 // our own registry key might not (yet) exist or we might be a value,
1117 // so just use the parent's and concatenate
1118 s_strName
= Parent()->FullName();
1119 s_strName
<< wxT('\\') << m_strName
;
1125 // ----------------------------------------------------------------------------
1126 // operations on RegTreeCtrl
1127 // ----------------------------------------------------------------------------
1129 void RegTreeCtrl::GoTo(const wxString
& location
)
1131 wxStringTokenizer
tk(location
, _T("\\"));
1133 wxTreeItemId id
= GetRootItem();
1135 while ( tk
.HasMoreTokens() )
1137 wxString subkey
= tk
.GetNextToken();
1139 wxTreeItemId idCurrent
= id
;
1140 if ( !IsExpanded(idCurrent
) )
1143 wxTreeItemIdValue dummy
;
1144 id
= GetFirstChild(idCurrent
, dummy
);
1146 if ( idCurrent
== GetRootItem() )
1148 // special case: we understand both HKCU and HKEY_CURRENT_USER here
1149 for ( size_t key
= 0; key
< wxRegKey::nStdKeys
; key
++ )
1151 if ( subkey
== wxRegKey::GetStdKeyName(key
)
1152 || subkey
== wxRegKey::GetStdKeyShortName(key
) )
1157 id
= GetNextChild(idCurrent
, dummy
);
1162 // enum all children
1165 if ( subkey
== ((TreeNode
*)GetItemData(id
))->m_strName
)
1168 id
= GetNextChild(idCurrent
, dummy
);
1174 wxLogError(_T("No such key '%s'."), location
.c_str());
1184 void RegTreeCtrl::DeleteSelected()
1186 wxTreeItemId lCurrent
= GetSelection(),
1187 lParent
= GetItemParent(lCurrent
);
1189 if ( lParent
== GetRootItem() )
1191 wxLogError(wxT("Can't delete root key."));
1195 TreeNode
*pCurrent
= (TreeNode
*)GetItemData(lCurrent
),
1196 *pParent
= (TreeNode
*)GetItemData(lParent
);
1198 wxCHECK_RET(pCurrent
&& pParent
, wxT("either node or parent without data?"));
1200 if ( pParent
->IsRoot() )
1202 wxLogError(wxT("Can't delete standard key."));
1206 wxString what
= pCurrent
->IsKey() ? _T("key") : _T("value");
1207 if ( wxMessageBox(wxString::Format
1209 wxT("Do you really want to delete this %s?"),
1213 wxICON_QUESTION
| wxYES_NO
| wxCANCEL
, this) != wxYES
)
1218 pParent
->DeleteChild(pCurrent
);
1221 void RegTreeCtrl::CreateNewKey(const wxString
& strName
)
1223 wxTreeItemId lCurrent
= GetSelection();
1224 TreeNode
*pCurrent
= (TreeNode
*)GetItemData(lCurrent
);
1226 wxCHECK_RET( pCurrent
!= NULL
, wxT("node without data?") );
1228 wxASSERT( pCurrent
->IsKey() ); // check must have been done before
1230 if ( pCurrent
->IsRoot() )
1232 wxLogError(wxT("Can't create a new key under the root key."));
1236 wxRegKey
key(pCurrent
->Key(), strName
);
1238 pCurrent
->Refresh();
1241 void RegTreeCtrl::CreateNewTextValue(const wxString
& strName
)
1243 wxTreeItemId lCurrent
= GetSelection();
1244 TreeNode
*pCurrent
= (TreeNode
*)GetItemData(lCurrent
);
1246 wxCHECK_RET( pCurrent
!= NULL
, wxT("node without data?") );
1248 wxASSERT( pCurrent
->IsKey() ); // check must have been done before
1250 if ( pCurrent
->IsRoot() )
1252 wxLogError(wxT("Can't create a new value under the root key."));
1256 if ( pCurrent
->Key().SetValue(strName
, wxEmptyString
) )
1257 pCurrent
->Refresh();
1260 void RegTreeCtrl::CreateNewBinaryValue(const wxString
& strName
)
1262 wxTreeItemId lCurrent
= GetSelection();
1263 TreeNode
*pCurrent
= (TreeNode
*)GetItemData(lCurrent
);
1265 wxCHECK_RET( pCurrent
!= NULL
, wxT("node without data?") );
1267 wxASSERT( pCurrent
->IsKey() ); // check must have been done before
1269 if ( pCurrent
->IsRoot() )
1271 wxLogError(wxT("Can't create a new value under the root key."));
1275 if ( pCurrent
->Key().SetValue(strName
, 0) )
1276 pCurrent
->Refresh();
1279 void RegTreeCtrl::ShowProperties()
1281 wxTreeItemId lCurrent
= GetSelection();
1282 TreeNode
*pCurrent
= (TreeNode
*)GetItemData(lCurrent
);
1284 if ( !pCurrent
|| pCurrent
->IsRoot() )
1286 wxLogStatus(wxT("No properties"));
1291 if ( pCurrent
->IsKey() )
1293 const wxRegKey
& key
= pCurrent
->Key();
1294 size_t nSubKeys
, nValues
;
1295 if ( !key
.GetKeyInfo(&nSubKeys
, NULL
, &nValues
, NULL
) )
1297 wxLogError(wxT("Couldn't get key info"));
1301 wxLogMessage(wxT("Key '%s' has %u subkeys and %u values."),
1302 key
.GetName().c_str(), nSubKeys
, nValues
);
1305 else // it's a value
1307 TreeNode
*parent
= pCurrent
->Parent();
1308 wxCHECK_RET( parent
, wxT("reg value without key?") );
1310 const wxRegKey
& key
= parent
->Key();
1311 const wxChar
*value
= pCurrent
->m_strName
.c_str();
1312 wxLogMessage(wxT("Value '%s' under the key '%s' is of type ")
1315 parent
->m_strName
.c_str(),
1316 key
.GetValueType(value
),
1317 key
.IsNumericValue(value
) ? wxT("numeric") : wxT("string"));
1322 bool RegTreeCtrl::IsKeySelected() const
1324 wxTreeItemId lCurrent
= GetSelection();
1325 TreeNode
*pCurrent
= (TreeNode
*) GetItemData(lCurrent
);
1327 wxCHECK( pCurrent
!= NULL
, false );
1329 return pCurrent
->IsKey();
1332 void RegTreeCtrl::DoRefresh()
1334 wxTreeItemId lId
= GetSelection();
1338 TreeNode
*pNode
= (TreeNode
*) GetItemData(lId
);
1340 wxCHECK_RET( pNode
!= NULL
, wxT("tree item without data?") );