File: TextFileViewer.h

package info (click to toggle)
mriconvert 1%3A2.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,488 kB
  • sloc: cpp: 17,029; makefile: 11
file content (21 lines) | stat: -rwxr-x--- 383 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TEXT_FILE_VIEWER_H
#define TEXT_FILE_VIEWER_H

#include <wx/frame.h>

class wxTextCtrl;

//****
// This used to read and display text files, now it just
// displays the contents provided by certain .h files.
//****
class TextFileViewer: public wxFrame
{
  public:
    TextFileViewer(wxWindow* parent, const wxChar* caption);

  private:
    wxTextCtrl* mTextCtrl;
};

#endif