This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neofx-zoomedit/window.h

17 lines
343 B
C

#ifndef WINDOW_H_
#define WINDOW_H_
#include <gtk/gtk.h>
#include <gtk/gtkgl.h>
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);
#endif /*WINDOW_H_*/