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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2013 by Eran Ifrah
// file name : message_pane.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef __message_pane__
#define __message_pane__
/**
@file
Subclass of MessagePaneBase, which is generated by wxFormBuilder.
*/
#include "messagepane_base.h"
#include <vector>
class ButtonDetails
{
public:
wxString buttonLabel;
int commandId;
wxEvtHandler* window;
bool menuCommand;
bool isDefault;
public:
ButtonDetails()
: buttonLabel(wxT(""))
, commandId(wxNOT_FOUND)
, window(NULL)
, menuCommand(true)
{
}
~ButtonDetails() {}
};
class CheckboxDetails
{
wxString configLabel; // If the user wants no more notification spam, store the preference using this label
bool showSpamCheck;
public:
CheckboxDetails()
: showSpamCheck(false)
{
}
CheckboxDetails(const wxString& label)
: configLabel(label)
, showSpamCheck(true)
{
}
~CheckboxDetails() {}
wxString GetLabel() const { return configLabel; }
bool GetShowCheckbox() const { return showSpamCheck; }
};
class MessageDetails
{
public:
wxString message;
wxBitmap bmp;
ButtonDetails btn1;
ButtonDetails btn2;
ButtonDetails btn3;
CheckboxDetails check;
bool showHideButton;
public:
MessageDetails()
: bmp(wxNullBitmap)
, showHideButton(true)
{
}
~MessageDetails() {}
};
class MessagePaneData
{
std::vector<MessageDetails> m_queue;
public:
MessagePaneData() {}
~MessagePaneData() { Clear(); }
void PushMessage(const MessageDetails& msg);
void PopMessage();
MessageDetails CurrentMessage();
void Clear();
bool IsEmpty();
bool IsExists(const wxString& msg);
};
/** Implementing MessagePaneBase */
class MessagePane : public MessagePaneBase
{
MessagePaneData m_messages;
protected:
// Handlers for MessagePaneBase events.
void OnKeyDown(wxKeyEvent& event);
void OnButtonClose(wxCommandEvent& event);
void OnActionButton(wxCommandEvent& event);
void OnActionButton1(wxCommandEvent& event);
void OnActionButton2(wxCommandEvent& event);
void OnEraseBG(wxEraseEvent& event);
void OnPaint(wxPaintEvent& event);
void DoHide();
void DoShowNextMessage();
void DoShowCurrentMessage();
void DoPostEvent(ButtonDetails btn);
void SavePreferenceIfNeeded(const MessageDetails msg, int choice);
public:
/** Constructor */
MessagePane(wxWindow* parent);
void ShowMessage(const wxString& message, bool showHideButton = true, const wxBitmap& bmp = wxNullBitmap,
const ButtonDetails& btn1 = ButtonDetails(), const ButtonDetails& btn2 = ButtonDetails(),
const ButtonDetails& btn3 = ButtonDetails(), const CheckboxDetails& chkbox = CheckboxDetails());
};
#endif // __message_pane__
|