2015-08-04 18:09:17 +02:00

84 lines
3.1 KiB
C++

// This file is part of Notepad++ project
// Copyright (C)2003 Don HO <don.h@free.fr>
//
// This program 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 2 of the License, or (at your option) any later version.
//
// Note that the GPL places important restrictions on "derived works", yet
// it does not provide a detailed definition of that term. To avoid
// misunderstandings, we consider an application to constitute a
// "derivative work" for the purpose of this license if it does any of the
// following:
// 1. Integrates source code from Notepad++.
// 2. Integrates/includes/aggregates Notepad++ into a proprietary executable
// installer, such as those produced by InstallShield.
// 3. Links to a library or executes a program that does any of the above.
//
// This program 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 this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "TreeView.h"
HTREEITEM TreeView::insertTo(HTREEITEM parent, TCHAR *itemStr, int imgIndex)
{
TV_INSERTSTRUCT tvinsert;
tvinsert.hParent=parent;
tvinsert.hInsertAfter=parent?TVI_LAST:TVI_ROOT;
tvinsert.item.mask=TVIF_TEXT|TVIF_IMAGE|TVIF_SELECTEDIMAGE;
tvinsert.item.pszText=itemStr;
tvinsert.item.iImage=imgIndex;
tvinsert.item.iSelectedImage=0;
return (HTREEITEM)::SendMessage(_hSelf, TVM_INSERTITEM, 0, (LPARAM)&tvinsert);
}
void TreeView::init(HINSTANCE hInst, HWND pere)
{
Window::init(hInst, pere);
InitCommonControls();
HTREEITEM Parent; // Tree item handle
HTREEITEM Before; // .......
HTREEITEM Root;
// Get the dimensions of the parent window's client area, and create
// the tree-view control.
_hSelf = CreateWindowEx(0,
WC_TREEVIEW,
TEXT("Tree View"),
WS_VISIBLE | WS_CHILD | WS_BORDER |
TVS_HASLINES | TVS_HASBUTTONS | TVS_SHOWSELALWAYS ,
0, 0, 0, 0,
_hParent,
NULL,
_hInst,
NULL);
if (!_hSelf)
throw int(56);
Parent = insertTo(NULL, TEXT("MAOCS30 Command"), 0);
Root=Parent;
Before=Parent;
Parent = insertTo(Parent, TEXT("Native command"), 0);
insertTo(Parent, TEXT("Power On"), 0);
insertTo(Parent, TEXT("Power off"), 0);
insertTo(Parent, TEXT("Entrant"), 0);
insertTo(Parent, TEXT("Sortant"), 0);
Parent = insertTo(Before, TEXT("Macro"), 0);
insertTo(Parent, TEXT("ChangeCode"), 0);
insertTo(Parent, TEXT("CipherData"), 0);
insertTo(NULL, TEXT("Bla bla bla bla..."), 0);
//display();
}