~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/Cscope/CscopeView.h

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CSCOPEVIEW_H
 
2
#define CSCOPETVIEW_H
 
3
 
 
4
#include <wx/string.h>
 
5
#include "loggers.h"
 
6
 
 
7
 
 
8
class CscopeConfig;
 
9
class CscopeTab;
 
10
class CscopeView : public Logger
 
11
{
 
12
    public:
 
13
        CscopeView(CscopeConfig *cfg);
 
14
        ~CscopeView();
 
15
        virtual wxWindow* CreateControl(wxWindow* parent);
 
16
 
 
17
        CscopeTab *GetWindow();
 
18
 
 
19
        virtual void Append( const wxString &  msg,  Logger::level  lv = info);
 
20
        virtual void Clear();
 
21
        virtual void CopyContentsToClipboard(bool selectionOnly = false);
 
22
 
 
23
    private:
 
24
        CscopeTab *m_pPanel;
 
25
        CscopeConfig* m_cfg;
 
26
};
 
27
 
 
28
#endif
 
29