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

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_*/