MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / FTPWindow

Method FTPWindow

src/Windows/FTPWindow.cpp:35–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33const TCHAR * FTPWindow::FTPWINDOWCLASS = TEXT("NPPFTPMAIN");
34
35FTPWindow::FTPWindow() :
36 DockableWindow(FTPWINDOWCLASS),
37 DropTargetWindow(),
38 ProfilesWindow(this),
39 m_treeimagelist(m_hInstance),
40 m_splitter(this, &m_treeview, &m_queueWindow),
41 m_outputShown(false),
42 m_currentSelection(NULL),
43 m_localFileExists(false),
44 m_ftpSession(NULL),
45 m_vProfiles(NULL),
46 m_ftpSettings(NULL),
47 m_connecting(false),
48 m_busy(false),
49 m_cancelOperation(NULL),
50 m_dndWindow(this),
51 m_currentDropObject(NULL),
52 m_currentDragObject(NULL)
53{
54 m_exStyle = 0;
55 m_style = 0;
56
57 //Create background brush
58 //DWORD colorBkGnd = GetSysColor(COLOR_3DFACE);
59 m_backgroundBrush = GetSysColorBrush(COLOR_3DFACE);//CreateSolidBrush(colorBkGnd);
60
61}
62
63FTPWindow::~FTPWindow() {
64 //DeleteObject(m_backgroundBrush);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected