File: ogl.h

package info (click to toggle)
pgadmin3 1.20.0~beta2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 73,704 kB
  • ctags: 18,591
  • sloc: cpp: 193,786; ansic: 18,736; sh: 5,154; pascal: 1,120; yacc: 927; makefile: 516; lex: 421; xml: 126; perl: 40
file content (37 lines) | stat: -rw-r--r-- 1,078 bytes parent folder | download
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
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Portions Copyright (C) 1998 - 2011, Julian Smart
// Portions Copyright (C) 2011 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ogl.h - OGL main include
//
//////////////////////////////////////////////////////////////////////////

#ifndef _OGL_OGL_H_
#define _OGL_OGL_H_

#include "ogl/basic.h"      // Basic shapes
#include "ogl/basicp.h"
#include "ogl/lines.h"      // Lines and splines
#include "ogl/linesp.h"
#include "ogl/divided.h"    // Vertically-divided rectangle
#include "ogl/composit.h"   // Composite images
#include "ogl/canvas.h"     // wxShapeCanvas for displaying objects
#include "ogl/ogldiag.h"    // wxDiagram

#include "ogl/bmpshape.h"
#include "ogl/constrnt.h"
#include "ogl/drawn.h"
#include "ogl/drawnp.h"
#include "ogl/mfutils.h"
#include "ogl/misc.h"

// TODO: replace with wxModule implementation
extern void wxOGLInitialize();
extern void wxOGLCleanUp();

#endif
// _OGL_OGL_H_