File: CoolCanvas.h

package info (click to toggle)
gentle 1.9%2Bcvs20100605%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 12,224 kB
  • ctags: 6,214
  • sloc: cpp: 41,569; ansic: 3,978; sh: 1,420; makefile: 243
file content (22 lines) | stat: -rwxr-xr-x 531 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _COOLCANVAS_H_
#define _COOLCANVAS_H_

/*
// Deactivated until I can think of something *really* cool ;-)
#include "PlasmidCanvas.h"
//#include "main.h"

class CoolCanvas : public PlasmidCanvas
    {
    public :
    CoolCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
    virtual void OnDrawCircular(wxDC& dc) ;
    virtual int x2D ( int x , int y , int z ) ;
    virtual int y2D ( int x , int y , int z ) ;
    virtual wxPoint xy2D ( int x , int y , int z ) ;
    } ;


*/
#endif