This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoomedit/window.h

18 lines
343 B
C
Raw Normal View History

2007-06-21 19:52:03 +00:00
#ifndef WINDOW_H_
#define WINDOW_H_
#include <gtk/gtk.h>
#include <gtk/gtkgl.h>
2007-06-21 19:52:03 +00:00
GtkWidget* createMainWindow(GdkGLConfig *glconfig);
void updateSidebar();
void zoomIn(float factor, float x, float y);
void zoomOut(float factor, float x, float y);
void zoomInCentered(float factor);
void zoomOutCentered(float factor);
2007-06-21 19:52:03 +00:00
#endif /*WINDOW_H_*/