File: librocketmanager.i

package info (click to toggle)
fife 0.4.2-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,204 kB
  • sloc: cpp: 42,642; xml: 18,881; python: 13,521; makefile: 23
file content (24 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%module fife
%{
#include "gui/librocket/librocketmanager.h"
#include "gui/guimanager.h"
%}

%include "gui/guimanager.i"

namespace FIFE {

	%feature("notabstract") LibRocketManager;
	class LibRocketManager : public IGUIManager {
	public:
		
		LibRocketManager();
		virtual ~LibRocketManager();
		
		void init(const std::string& backend, int32_t screenWidth, int32_t screenHeight);
		void loadFont(const std::string& filepath);
		
		void showDebugger() const;
		void hideDebugger() const;
	};
}