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
|
/***************************************************************************
certtree.h - description
-------------------
begin : Sun Jun 23 2002
copyright : (C) 2002 by ARRL
author : Jon Bloom
email : jbloom@arrl.org
revision : $Id$
***************************************************************************/
#ifndef __certtree_h
#define __certtree_h
#ifdef HAVE_CONFIG_H
#include "sysconfig.h"
#endif
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include <wx/treectrl.h>
#include <vector>
#include "tqsllib.h"
#include "wxutil.h"
class CertTreeItemData : public wxTreeItemData {
public:
explicit CertTreeItemData(tQSL_Cert cert) : _cert(cert) {path = wxEmptyString; basename = wxEmptyString;}
tQSL_Cert getCert() { return _cert; }
wxString path;
wxString basename;
private:
tQSL_Cert _cert;
};
class CertTree : public wxTreeCtrl {
public:
CertTree(wxWindow *parent, const wxWindowID id, const wxPoint& pos,
const wxSize& size, long style);
virtual ~CertTree();
int Build(int flags = TQSL_SELECT_CERT_WITHKEYS, const TQSL_PROVIDER *provider = 0);
void OnItemActivated(wxTreeEvent& event);
void OnRightDown(wxMouseEvent& event);
void OnKeyDown(wxTreeEvent& event);
void SetTabTo(wxWindow*);
bool useContextMenu;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Woverloaded-virtual"
#endif
CertTreeItemData *GetItemData(wxTreeItemId id) { return reinterpret_cast<CertTreeItemData *>(wxTreeCtrl::GetItemData(id)); }
#ifdef __clang__
#pragma clang diagnostic pop
#endif
int GetNumCerts() const { return _ncerts; }
int GetNumIssuers() const { return _nissuers; }
void SelectCert(tQSL_Cert cert);
private:
tQSL_Cert *_certs;
int _ncerts;
int _nissuers;
std::vector<int> pktype;
std::vector<bool> isExpired;
std::vector<bool> superceded;
std::vector<bool> keyonly;
wxWindow* tabTo;
wxImageList *il;
DECLARE_EVENT_TABLE()
};
#endif // __certtree_h
|