/* * Copyright 2004 Perforce Software. All rights reserved. * * Developed by Data Shades Ltd. */ #ifndef INC_CHECK_IN_ADD_DIALOG #define INC_CHECK_IN_ADD_DIALOG #include "Dialog.h" #include "PerforceOptions.h" /* * CheckInAddDialog - dialog box to ask user if they want to check in * file after adding to Perforce. */ class CheckInAddDialog : public Dialog { public: /* * Constructor. * * ops - The plugin operations object. * options - Interface to preference store */ CheckInAddDialog( PluginOperations *ops, PerforceOptions *options ); private: /* * Dialog windows procedure * * hWnd - Handle of dialog window. * uMsg - Windows message. * wParam - Message wParam. * lParam - Message lParam. */ static BOOL CALLBACK DialogWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ); /* * Check if this dialog should appear again * * check - Handle of "do not show" check */ void CheckHideOption( HWND check ); /* * Get the options interface */ PerforceOptions *Options() { return options; }; PerforceOptions *options; }; #endif
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 11893 | Robert Cowham |
Populate -o //guest/robert_cowham/perforce/P4OFC/main/... //guest/robert_cowham/perforce/P4OFC/icm/.... |
||
//guest/robert_cowham/perforce/P4OFC/main/libp4gt/CheckInAddDialog.h | |||||
#1 | 10843 | Robert Cowham |
Initial version of P4OFC source code. See README.txt (and LICENSE.txt and doc\P4OFC-Design.docx) |