1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include <sdk.h> // Code::Blocks SDK
#include <configurationpanel.h>
#include "wxSmithDateTimePicker.h"
// Register the plugin with Code::Blocks.
// We are using an anonymous namespace so we don't litter the global one.
namespace
{
PluginRegistrant<wxSmithDateTimePicker> reg(_T("wxSmithDateTimePicker"));
}
// constructor
wxSmithDateTimePicker::wxSmithDateTimePicker()
{
// Make sure our resources are available.
// In the generated boilerplate code we have no resources but when
// we add some, it will be nice that this code is in place already ;)
if(!Manager::LoadResource(_T("wxSmithDateTimePicker.zip")))
{
NotifyMissingFile(_T("wxSmithDateTimePicker.zip"));
}
}
// destructor
wxSmithDateTimePicker::~wxSmithDateTimePicker()
{
}
void wxSmithDateTimePicker::OnAttach()
{
// do whatever initialization you need for your plugin
// NOTE: after this function, the inherited member variable
// m_IsAttached will be TRUE...
// You should check for it in other functions, because if it
// is FALSE, it means that the application did *not* "load"
// (see: does not need) this plugin...
}
void wxSmithDateTimePicker::OnRelease(bool appShutDown)
{
// do de-initialization for your plugin
// if appShutDown is true, the plugin is unloaded because Code::Blocks is being shut down,
// which means you must not use any of the SDK Managers
// NOTE: after this function, the inherited member variable
// m_IsAttached will be FALSE...
}
|