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
|
/***************************************************************************
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 "tqsllib.h"
#include "wx/treectrl.h"
class CertTreeItemData : public wxTreeItemData {
public:
explicit CertTreeItemData(tQSL_Cert cert) : _cert(cert) {}
~CertTreeItemData();
tQSL_Cert getCert() { return _cert; }
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);
bool useContextMenu;
CertTreeItemData *GetItemData(wxTreeItemId id) { return reinterpret_cast<CertTreeItemData *>(wxTreeCtrl::GetItemData(id)); }
int GetNumCerts() const { return _ncerts; }
int GetNumIssuers() const { return _nissuers; }
void SelectCert(tQSL_Cert cert);
private:
tQSL_Cert *_certs;
int _ncerts;
int _nissuers;
DECLARE_EVENT_TABLE()
};
#endif // __certtree_h
|