-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAxMenuLogView.cpp
121 lines (104 loc) · 4.42 KB
/
AxMenuLogView.cpp
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
//=============================================================================
/*
* See the file README in the main directory for a description of
* this software, copyright information, and how to reach the author.
*
* Author: alex
* Date: 13.09.2005
*
* Last modfied:
* $Author: alex $
* $Date: 2005-09-12 19:09:16 +0200 (Mo, 12 Sep 2005) $
*/
//=============================================================================
//=============================================================================
// includes
//=============================================================================
//----- multiple defs of swap() workaround ------------------------------------
#include "AxPluginGlobals.h"
//----- qt --------------------------------------------------------------------
//----- CORBA -----------------------------------------------------------------
//----- ICE -------------------------------------------------------------------
//----- C++ -------------------------------------------------------------------
#include <string>
//----- C ---------------------------------------------------------------------
//----- vdr -------------------------------------------------------------------
#include <vdr/tools.h>
#include <vdr/font.h>
#include <vdr/i18n.h>
#include <vdr/menuitems.h>
#include <vdr/remote.h>
//----- AxLib -----------------------------------------------------------------
#include <Ax/Tools/Trace.h>
// #include <Ax/Tools/TraceOn.h>
#include <Ax/Tools/Globals.h>
//----- local plugin ----------------------------------------------------------
#include "AxMenuLogView.h"
//=============================================================================
// using namespaces
//=============================================================================
using namespace std;
using namespace Ax;
//=============================================================================
// class AxMenuLogView
//=============================================================================
//-----------------------------------------------------------------------------
// AxMenuLogView::AxMenuLogView()
//-----------------------------------------------------------------------------
AxMenuLogView::AxMenuLogView(Ax::Mail::LogHandler &theLogHandler)
: PARENT( tr("Log-view")
, tr("Log-view")
)
, myLogHandler(theLogHandler)
{
//----- create actions ------------------------------------------------------
addAction(new Vdr::ActionCallback<PARENT>( this
, A_CLEAR_LOG
, tr("Clear")
, "ClearLog"
, tr("Clear log and close")
));
//----- assign actions to keys ----------------------------------------------
setKeyAction(kRed, A_CLEAR_LOG);
//----- fill log text -------------------------------------------------------
std::string aLogText = "";
Mail::LogCltn::const_iterator aEnd = myLogHandler.getRecords().end();
for (Mail::LogCltn::const_iterator anIter = myLogHandler.getRecords().begin();
anIter != aEnd;
++anIter)
{
aLogText += anIter->tmsg() + std::string("\n");
} // for
setText(aLogText);
if (myLogHandler.isEmpty())
{
showStatusMsg(tr("No log available"), 0);
} // if
} // AxMenuLogView::AxMenuLogView()
//-----------------------------------------------------------------------------
// AxMenuLogView::~AxMenuLogView()
//-----------------------------------------------------------------------------
AxMenuLogView::~AxMenuLogView()
{
} // AxMenuLogView::~AxMenuLogView()
//-------------------------------------------------------------------------
// AxMenuLogView::processAction()
//-------------------------------------------------------------------------
eOSState AxMenuLogView::processAction(const Ax::Vdr::Action &theAction, eOSState theState)
{
switch (theAction.getID())
{
case A_CLEAR_LOG:
{
myLogHandler.clear();
theState = osBack; // kein log mehr vorhanden -> close
break;
}
default: //----- give parents a chance --------------------------------
{
theState = PARENT::processAction(theAction, theState);
break;
}
} // switch
return theState;
} // AxMenuLogView::processAction()