glava-config build process and initial widget layout
This commit is contained in:
105
glava-config/entry.c
Normal file
105
glava-config/entry.c
Normal file
@@ -0,0 +1,105 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <lua.h>
|
||||
#include <lualib.h>
|
||||
#include <lauxlib.h>
|
||||
|
||||
#define GLAVA_LUA_ENTRY "glava-config.main"
|
||||
#define GLAVA_LUA_ENTRY_FUNC "entry"
|
||||
|
||||
/* Should be already defined by Meson */
|
||||
#ifndef GLAVA_RESOURCE_PATH
|
||||
#define GLAVA_RESOURCE_PATH "../resources"
|
||||
#endif
|
||||
#ifndef SHADER_INSTALL_PATH
|
||||
#ifndef GLAVA_STANDALONE
|
||||
#define SHADER_INSTALL_PATH "/etc/xdg/glava"
|
||||
#else
|
||||
#define SHADER_INSTALL_PATH "../shaders/glava"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static int traceback(lua_State *L) {
|
||||
if (!lua_isstring(L, 1))
|
||||
return 1;
|
||||
lua_getglobal(L, "debug");
|
||||
if (!lua_istable(L, -1)) {
|
||||
lua_pop(L, 1);
|
||||
return 1;
|
||||
}
|
||||
lua_getfield(L, -1, "traceback");
|
||||
if (!lua_isfunction(L, -1)) {
|
||||
lua_pop(L, 2);
|
||||
return 1;
|
||||
}
|
||||
lua_pushvalue(L, 1);
|
||||
lua_pushinteger(L, 2);
|
||||
lua_call(L, 2, 1);
|
||||
return 1;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
|
||||
puts("WARNING: `glava-config` is in an incomplete state. Do not use this tool outside of development purposes.");
|
||||
fflush(stdout);
|
||||
|
||||
lua_State* L = luaL_newstate();
|
||||
luaL_openlibs(L);
|
||||
|
||||
lua_pushcfunction(L, traceback);
|
||||
|
||||
#ifdef GLAVA_STANDALONE
|
||||
/* Local path environment for standalone execution */
|
||||
lua_getglobal(L, "package");
|
||||
lua_pushstring(L, "path");
|
||||
lua_gettable(L, -2);
|
||||
lua_pushstring(L, "./glava-env/?.lua;./glava-env/?/init.lua;");
|
||||
lua_insert(L, -2);
|
||||
lua_concat(L, 2);
|
||||
lua_pushstring(L, "path");
|
||||
lua_insert(L, -2);
|
||||
lua_settable(L, -3);
|
||||
lua_pop(L, 1);
|
||||
#endif
|
||||
|
||||
/* GLava compilation settings */
|
||||
lua_newtable(L);
|
||||
lua_pushstring(L, "resource_path");
|
||||
lua_pushstring(L, GLAVA_RESOURCE_PATH);
|
||||
lua_rawset(L, -3);
|
||||
lua_pushstring(L, "system_shader_path");
|
||||
lua_pushstring(L, SHADER_INSTALL_PATH);
|
||||
lua_rawset(L, -3);
|
||||
lua_setglobal(L, "glava");
|
||||
|
||||
lua_getglobal(L, "require");
|
||||
lua_pushstring(L, GLAVA_LUA_ENTRY);
|
||||
lua_call(L, 1, 1);
|
||||
lua_pushstring(L, GLAVA_LUA_ENTRY_FUNC);
|
||||
lua_gettable(L, -2);
|
||||
if (!lua_isfunction(L, -1)) {
|
||||
fprintf(stderr, "FATAL: no `" GLAVA_LUA_ENTRY_FUNC "` function in entry module\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
for (int t = 0; t < argc; ++t)
|
||||
lua_pushstring(L, argv[t]);
|
||||
int result = EXIT_FAILURE;
|
||||
switch (lua_pcall(L, argc, 1, 1)) {
|
||||
case LUA_OK:
|
||||
if (lua_isnumber(L, -1))
|
||||
result = lua_tonumber(L, -1);
|
||||
break;
|
||||
case LUA_ERRRUN:
|
||||
fprintf(stderr, "FATAL: error in `" GLAVA_LUA_ENTRY
|
||||
"." GLAVA_LUA_ENTRY_FUNC "`: %s\n", lua_tostring(L, -1));
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "FATAL: unhandled error from lua_pcall\n");
|
||||
break;
|
||||
}
|
||||
lua_close(L);
|
||||
return result;
|
||||
}
|
||||
@@ -1,248 +0,0 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
|
||||
#define NK_INCLUDE_FIXED_TYPES
|
||||
#define NK_INCLUDE_STANDARD_IO
|
||||
#define NK_INCLUDE_STANDARD_VARARGS
|
||||
#define NK_INCLUDE_DEFAULT_ALLOCATOR
|
||||
#define NK_INCLUDE_VERTEX_BUFFER_OUTPUT
|
||||
#define NK_INCLUDE_FONT_BAKING
|
||||
#define NK_INCLUDE_DEFAULT_FONT
|
||||
#define NK_IMPLEMENTATION
|
||||
#define NK_XLIB_GL3_IMPLEMENTATION
|
||||
#define NK_XLIB_LOAD_OPENGL_EXTENSIONS
|
||||
#include "nuklear.h"
|
||||
#include "nuklear_xlib_gl3.h"
|
||||
|
||||
#define WINDOW_WIDTH 400
|
||||
#define WINDOW_HEIGHT 400
|
||||
|
||||
#define MAX_VERTEX_BUFFER 512 * 1024
|
||||
#define MAX_ELEMENT_BUFFER 128 * 1024
|
||||
|
||||
struct XWindow {
|
||||
Display *dpy;
|
||||
Window win;
|
||||
XVisualInfo *vis;
|
||||
Colormap cmap;
|
||||
XSetWindowAttributes swa;
|
||||
XWindowAttributes attr;
|
||||
GLXFBConfig fbc;
|
||||
Atom wm_delete_window;
|
||||
int width, height;
|
||||
};
|
||||
static int gl_err = nk_false;
|
||||
static int gl_error_handler(Display *dpy, XErrorEvent *ev) {
|
||||
NK_UNUSED(dpy);
|
||||
NK_UNUSED(ev);
|
||||
gl_err = nk_true;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void die(const char *fmt, ...) {
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
va_end(ap);
|
||||
fputs("\n", stderr);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
static int has_extension(const char *string, const char *ext) {
|
||||
const char *start, *where, *term;
|
||||
where = strchr(ext, ' ');
|
||||
if (where || *ext == '\0')
|
||||
return nk_false;
|
||||
|
||||
for (start = string;;) {
|
||||
where = strstr((const char*)start, ext);
|
||||
if (!where) break;
|
||||
term = where + strlen(ext);
|
||||
if (where == start || *(where - 1) == ' ') {
|
||||
if (*term == ' ' || *term == '\0')
|
||||
return nk_true;
|
||||
}
|
||||
start = term;
|
||||
}
|
||||
return nk_false;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
/* Platform */
|
||||
int running = 1;
|
||||
struct XWindow win;
|
||||
GLXContext glContext;
|
||||
struct nk_context *ctx;
|
||||
struct nk_colorf bg;
|
||||
|
||||
memset(&win, 0, sizeof(win));
|
||||
win.dpy = XOpenDisplay(NULL);
|
||||
if (!win.dpy) die("Failed to open X display\n");
|
||||
|
||||
{
|
||||
/* check glx version */
|
||||
int glx_major, glx_minor;
|
||||
if (!glXQueryVersion(win.dpy, &glx_major, &glx_minor))
|
||||
die("[X11]: Error: Failed to query OpenGL version\n");
|
||||
if ((glx_major == 1 && glx_minor < 3) || (glx_major < 1))
|
||||
die("[X11]: Error: Invalid GLX version!\n");
|
||||
}
|
||||
{
|
||||
/* find and pick matching framebuffer visual */
|
||||
int fb_count;
|
||||
static GLint attr[] = {
|
||||
GLX_X_RENDERABLE, True,
|
||||
GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
|
||||
GLX_RENDER_TYPE, GLX_RGBA_BIT,
|
||||
GLX_X_VISUAL_TYPE, GLX_TRUE_COLOR,
|
||||
GLX_RED_SIZE, 8,
|
||||
GLX_GREEN_SIZE, 8,
|
||||
GLX_BLUE_SIZE, 8,
|
||||
GLX_ALPHA_SIZE, 8,
|
||||
GLX_DEPTH_SIZE, 24,
|
||||
GLX_STENCIL_SIZE, 8,
|
||||
GLX_DOUBLEBUFFER, True,
|
||||
None
|
||||
};
|
||||
GLXFBConfig *fbc;
|
||||
fbc = glXChooseFBConfig(win.dpy, DefaultScreen(win.dpy), attr, &fb_count);
|
||||
if (!fbc) die("[X11]: Error: failed to retrieve framebuffer configuration\n");
|
||||
{
|
||||
/* pick framebuffer with most samples per pixel */
|
||||
int i;
|
||||
int fb_best = -1, best_num_samples = -1;
|
||||
for (i = 0; i < fb_count; ++i) {
|
||||
XVisualInfo *vi = glXGetVisualFromFBConfig(win.dpy, fbc[i]);
|
||||
if (vi) {
|
||||
int sample_buffer, samples;
|
||||
glXGetFBConfigAttrib(win.dpy, fbc[i], GLX_SAMPLE_BUFFERS, &sample_buffer);
|
||||
glXGetFBConfigAttrib(win.dpy, fbc[i], GLX_SAMPLES, &samples);
|
||||
if ((fb_best < 0) || (sample_buffer && samples > best_num_samples))
|
||||
fb_best = i, best_num_samples = samples;
|
||||
}
|
||||
}
|
||||
win.fbc = fbc[fb_best];
|
||||
XFree(fbc);
|
||||
win.vis = glXGetVisualFromFBConfig(win.dpy, win.fbc);
|
||||
}
|
||||
}
|
||||
{
|
||||
/* create window */
|
||||
win.cmap = XCreateColormap(win.dpy, RootWindow(win.dpy, win.vis->screen), win.vis->visual, AllocNone);
|
||||
win.swa.colormap = win.cmap;
|
||||
win.swa.background_pixmap = None;
|
||||
win.swa.border_pixel = 0;
|
||||
win.swa.event_mask =
|
||||
ExposureMask | KeyPressMask | KeyReleaseMask |
|
||||
ButtonPress | ButtonReleaseMask| ButtonMotionMask |
|
||||
Button1MotionMask | Button3MotionMask | Button4MotionMask | Button5MotionMask|
|
||||
PointerMotionMask| StructureNotifyMask;
|
||||
win.win = XCreateWindow(win.dpy, RootWindow(win.dpy, win.vis->screen), 0, 0,
|
||||
WINDOW_WIDTH, WINDOW_HEIGHT, 0, win.vis->depth, InputOutput,
|
||||
win.vis->visual, CWBorderPixel|CWColormap|CWEventMask, &win.swa);
|
||||
if (!win.win) die("[X11]: Failed to create window\n");
|
||||
XFree(win.vis);
|
||||
XStoreName(win.dpy, win.win, "glava-config");
|
||||
XMapWindow(win.dpy, win.win);
|
||||
win.wm_delete_window = XInternAtom(win.dpy, "WM_DELETE_WINDOW", False);
|
||||
XSetWMProtocols(win.dpy, win.win, &win.wm_delete_window, 1);
|
||||
}
|
||||
{
|
||||
/* create opengl context */
|
||||
typedef GLXContext(*glxCreateContext)(Display*, GLXFBConfig, GLXContext, Bool, const int*);
|
||||
int(*old_handler)(Display*, XErrorEvent*) = XSetErrorHandler(gl_error_handler);
|
||||
const char *extensions_str = glXQueryExtensionsString(win.dpy, DefaultScreen(win.dpy));
|
||||
glxCreateContext create_context = (glxCreateContext)
|
||||
glXGetProcAddressARB((const GLubyte*)"glXCreateContextAttribsARB");
|
||||
|
||||
gl_err = nk_false;
|
||||
if (!has_extension(extensions_str, "GLX_ARB_create_context") || !create_context) {
|
||||
fprintf(stdout, "[X11]: glXCreateContextAttribARB() not found...\n");
|
||||
fprintf(stdout, "[X11]: ... using old-style GLX context\n");
|
||||
glContext = glXCreateNewContext(win.dpy, win.fbc, GLX_RGBA_TYPE, 0, True);
|
||||
} else {
|
||||
GLint attr[] = {
|
||||
GLX_CONTEXT_MAJOR_VERSION_ARB, 3,
|
||||
GLX_CONTEXT_MINOR_VERSION_ARB, 0,
|
||||
None
|
||||
};
|
||||
glContext = create_context(win.dpy, win.fbc, 0, True, attr);
|
||||
XSync(win.dpy, False);
|
||||
if (gl_err || !glContext) {
|
||||
/* Could not create GL 3.0 context. Fallback to old 2.x context.
|
||||
* If a version below 3.0 is requested, implementations will
|
||||
* return the newest context version compatible with OpenGL
|
||||
* version less than version 3.0.*/
|
||||
attr[1] = 1; attr[3] = 0;
|
||||
gl_err = nk_false;
|
||||
fprintf(stdout, "[X11] Failed to create OpenGL 3.0 context\n");
|
||||
fprintf(stdout, "[X11] ... using old-style GLX context!\n");
|
||||
glContext = create_context(win.dpy, win.fbc, 0, True, attr);
|
||||
}
|
||||
}
|
||||
XSync(win.dpy, False);
|
||||
XSetErrorHandler(old_handler);
|
||||
if (gl_err || !glContext)
|
||||
die("[X11]: Failed to create an OpenGL context\n");
|
||||
glXMakeCurrent(win.dpy, win.win, glContext);
|
||||
}
|
||||
|
||||
ctx = nk_x11_init(win.dpy, win.win);
|
||||
{
|
||||
struct nk_font_atlas *atlas;
|
||||
nk_x11_font_stash_begin(&atlas);
|
||||
nk_x11_font_stash_end();
|
||||
}
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
while (running)
|
||||
{
|
||||
/* Input */
|
||||
XEvent evt;
|
||||
nk_input_begin(ctx);
|
||||
while (XPending(win.dpy)) {
|
||||
XNextEvent(win.dpy, &evt);
|
||||
if (evt.type == ClientMessage) goto cleanup;
|
||||
if (XFilterEvent(&evt, win.win)) continue;
|
||||
nk_x11_handle_event(&evt);
|
||||
}
|
||||
nk_input_end(ctx);
|
||||
|
||||
/* GUI */
|
||||
if (nk_begin(ctx, "glava-config", nk_rect(0, 0, WINDOW_WIDTH, WINDOW_HEIGHT), 0)) {
|
||||
nk_layout_row_static(ctx, 30, 180, 1);
|
||||
if (nk_button_label(ctx, "Reload glava")) {
|
||||
fprintf(stdout, "sending SIGUSR1 to glava\n");
|
||||
char pid_buf[128];
|
||||
FILE* pid_pipe = popen("pidof -s glava", "r");
|
||||
fgets(pid_buf, 128, pid_pipe);
|
||||
pid_t pid = strtoul(pid_buf, NULL, 10);
|
||||
if (pid > 0)
|
||||
kill(pid, SIGUSR1);
|
||||
else
|
||||
fprintf(stderr, "glava is not running\n");
|
||||
pclose(pid_pipe);
|
||||
}
|
||||
}
|
||||
nk_end(ctx);
|
||||
|
||||
/* Draw */
|
||||
XGetWindowAttributes(win.dpy, win.win, &win.attr);
|
||||
glViewport(0, 0, win.width, win.height);
|
||||
glClear(GL_COLOR_BUFFER_BIT);
|
||||
glClearColor(bg.r, bg.g, bg.b, bg.a);
|
||||
nk_x11_render(NK_ANTI_ALIASING_ON, MAX_VERTEX_BUFFER, MAX_ELEMENT_BUFFER);
|
||||
glXSwapBuffers(win.dpy, win.win);
|
||||
}
|
||||
|
||||
cleanup:
|
||||
nk_x11_shutdown();
|
||||
glXMakeCurrent(win.dpy, 0, 0);
|
||||
glXDestroyContext(win.dpy, glContext);
|
||||
XUnmapWindow(win.dpy, win.win);
|
||||
XFreeColormap(win.dpy, win.cmap);
|
||||
XDestroyWindow(win.dpy, win.win);
|
||||
XCloseDisplay(win.dpy);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
31
glava-config/main.lua
Normal file
31
glava-config/main.lua
Normal file
@@ -0,0 +1,31 @@
|
||||
local window = require("glava-config.window")
|
||||
|
||||
local function dependency(name)
|
||||
if package.loaded[name] then
|
||||
return
|
||||
else
|
||||
for _, searcher in ipairs(package.searchers or package.loaders) do
|
||||
local loader = searcher(name)
|
||||
if type(loader) == 'function' then
|
||||
package.preload[name] = loader
|
||||
return
|
||||
end
|
||||
end
|
||||
print("Dependency \"" .. name .. "\" is not installed.")
|
||||
print("Please install it through your package manager or Lua distribution.")
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
|
||||
local main = {}
|
||||
|
||||
function main.entry(prog, ...)
|
||||
dependency("lgi")
|
||||
dependency("lfs")
|
||||
if glava.resource_path:sub(glava.resource_path:len()) ~= "/" then
|
||||
glava.resource_path = glava.resource_path .. "/"
|
||||
end
|
||||
window()
|
||||
end
|
||||
|
||||
return main
|
||||
25575
glava-config/nuklear.h
25575
glava-config/nuklear.h
File diff suppressed because it is too large
Load Diff
@@ -1,743 +0,0 @@
|
||||
/*
|
||||
* Nuklear - v1.17 - public domain
|
||||
* no warrenty implied; use at your own risk.
|
||||
* authored from 2015-2016 by Micha Mettke
|
||||
*/
|
||||
/*
|
||||
* ==============================================================
|
||||
*
|
||||
* API
|
||||
*
|
||||
* ===============================================================
|
||||
*/
|
||||
#ifndef NK_XLIB_GL3_H_
|
||||
#define NK_XLIB_GL3_H_
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
NK_API struct nk_context* nk_x11_init(Display *dpy, Window win);
|
||||
NK_API void nk_x11_font_stash_begin(struct nk_font_atlas **atlas);
|
||||
NK_API void nk_x11_font_stash_end(void);
|
||||
NK_API int nk_x11_handle_event(XEvent *evt);
|
||||
NK_API void nk_x11_render(enum nk_anti_aliasing, int max_vertex_buffer, int max_element_buffer);
|
||||
NK_API void nk_x11_shutdown(void);
|
||||
NK_API int nk_x11_device_create(void);
|
||||
NK_API void nk_x11_device_destroy(void);
|
||||
|
||||
#endif
|
||||
/*
|
||||
* ==============================================================
|
||||
*
|
||||
* IMPLEMENTATION
|
||||
*
|
||||
* ===============================================================
|
||||
*/
|
||||
#ifdef NK_XLIB_GL3_IMPLEMENTATION
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/Xutil.h>
|
||||
#include <X11/Xresource.h>
|
||||
#include <X11/Xlocale.h>
|
||||
|
||||
#include <GL/gl.h>
|
||||
#include <GL/glx.h>
|
||||
|
||||
#ifndef NK_X11_DOUBLE_CLICK_LO
|
||||
#define NK_X11_DOUBLE_CLICK_LO 20
|
||||
#endif
|
||||
#ifndef NK_X11_DOUBLE_CLICK_HI
|
||||
#define NK_X11_DOUBLE_CLICK_HI 200
|
||||
#endif
|
||||
|
||||
#ifdef NK_XLIB_LOAD_OPENGL_EXTENSIONS
|
||||
#include <GL/glxext.h>
|
||||
|
||||
/* GL_ARB_vertex_buffer_object */
|
||||
typedef void(*nkglGenBuffers)(GLsizei, GLuint*);
|
||||
typedef void(*nkglBindBuffer)(GLenum, GLuint);
|
||||
typedef void(*nkglBufferData)(GLenum, GLsizeiptr, const GLvoid*, GLenum);
|
||||
typedef void(*nkglBufferSubData)(GLenum, GLintptr, GLsizeiptr, const GLvoid*);
|
||||
typedef void*(*nkglMapBuffer)(GLenum, GLenum);
|
||||
typedef GLboolean(*nkglUnmapBuffer)(GLenum);
|
||||
typedef void(*nkglDeleteBuffers)(GLsizei, GLuint*);
|
||||
/* GL_ARB_vertex_array_object */
|
||||
typedef void (*nkglGenVertexArrays)(GLsizei, GLuint*);
|
||||
typedef void (*nkglBindVertexArray)(GLuint);
|
||||
typedef void (*nkglDeleteVertexArrays)(GLsizei, const GLuint*);
|
||||
/* GL_ARB_vertex_program / GL_ARB_fragment_program */
|
||||
typedef void(*nkglVertexAttribPointer)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid*);
|
||||
typedef void(*nkglEnableVertexAttribArray)(GLuint);
|
||||
typedef void(*nkglDisableVertexAttribArray)(GLuint);
|
||||
/* GL_ARB_framebuffer_object */
|
||||
typedef void(*nkglGenerateMipmap)(GLenum target);
|
||||
/* GLSL/OpenGL 2.0 core */
|
||||
typedef GLuint(*nkglCreateShader)(GLenum);
|
||||
typedef void(*nkglShaderSource)(GLuint, GLsizei, const GLchar**, const GLint*);
|
||||
typedef void(*nkglCompileShader)(GLuint);
|
||||
typedef void(*nkglGetShaderiv)(GLuint, GLenum, GLint*);
|
||||
typedef void(*nkglGetShaderInfoLog)(GLuint, GLsizei, GLsizei*, GLchar*);
|
||||
typedef void(*nkglDeleteShader)(GLuint);
|
||||
typedef GLuint(*nkglCreateProgram)(void);
|
||||
typedef void(*nkglAttachShader)(GLuint, GLuint);
|
||||
typedef void(*nkglDetachShader)(GLuint, GLuint);
|
||||
typedef void(*nkglLinkProgram)(GLuint);
|
||||
typedef void(*nkglUseProgram)(GLuint);
|
||||
typedef void(*nkglGetProgramiv)(GLuint, GLenum, GLint*);
|
||||
typedef void(*nkglGetProgramInfoLog)(GLuint, GLsizei, GLsizei*, GLchar*);
|
||||
typedef void(*nkglDeleteProgram)(GLuint);
|
||||
typedef GLint(*nkglGetUniformLocation)(GLuint, const GLchar*);
|
||||
typedef GLint(*nkglGetAttribLocation)(GLuint, const GLchar*);
|
||||
typedef void(*nkglUniform1i)(GLint, GLint);
|
||||
typedef void(*nkglUniform1f)(GLint, GLfloat);
|
||||
typedef void(*nkglUniformMatrix3fv)(GLint, GLsizei, GLboolean, const GLfloat*);
|
||||
typedef void(*nkglUniformMatrix4fv)(GLint, GLsizei, GLboolean, const GLfloat*);
|
||||
|
||||
static nkglGenBuffers glGenBuffers;
|
||||
static nkglBindBuffer glBindBuffer;
|
||||
static nkglBufferData glBufferData;
|
||||
static nkglBufferSubData glBufferSubData;
|
||||
static nkglMapBuffer glMapBuffer;
|
||||
static nkglUnmapBuffer glUnmapBuffer;
|
||||
static nkglDeleteBuffers glDeleteBuffers;
|
||||
static nkglGenVertexArrays glGenVertexArrays;
|
||||
static nkglBindVertexArray glBindVertexArray;
|
||||
static nkglDeleteVertexArrays glDeleteVertexArrays;
|
||||
static nkglVertexAttribPointer glVertexAttribPointer;
|
||||
static nkglEnableVertexAttribArray glEnableVertexAttribArray;
|
||||
static nkglDisableVertexAttribArray glDisableVertexAttribArray;
|
||||
static nkglGenerateMipmap glGenerateMipmap;
|
||||
static nkglCreateShader glCreateShader;
|
||||
static nkglShaderSource glShaderSource;
|
||||
static nkglCompileShader glCompileShader;
|
||||
static nkglGetShaderiv glGetShaderiv;
|
||||
static nkglGetShaderInfoLog glGetShaderInfoLog;
|
||||
static nkglDeleteShader glDeleteShader;
|
||||
static nkglCreateProgram glCreateProgram;
|
||||
static nkglAttachShader glAttachShader;
|
||||
static nkglDetachShader glDetachShader;
|
||||
static nkglLinkProgram glLinkProgram;
|
||||
static nkglUseProgram glUseProgram;
|
||||
static nkglGetProgramiv glGetProgramiv;
|
||||
static nkglGetProgramInfoLog glGetProgramInfoLog;
|
||||
static nkglDeleteProgram glDeleteProgram;
|
||||
static nkglGetUniformLocation glGetUniformLocation;
|
||||
static nkglGetAttribLocation glGetAttribLocation;
|
||||
static nkglUniform1i glUniform1i;
|
||||
static nkglUniform1f glUniform1f;
|
||||
static nkglUniformMatrix3fv glUniformMatrix3fv;
|
||||
static nkglUniformMatrix4fv glUniformMatrix4fv;
|
||||
|
||||
enum graphics_card_vendors {
|
||||
VENDOR_UNKNOWN,
|
||||
VENDOR_NVIDIA,
|
||||
VENDOR_AMD,
|
||||
VENDOR_INTEL
|
||||
};
|
||||
|
||||
struct opengl_info {
|
||||
/* info */
|
||||
const char *vendor_str;
|
||||
const char *version_str;
|
||||
const char *extensions_str;
|
||||
const char *renderer_str;
|
||||
const char *glsl_version_str;
|
||||
enum graphics_card_vendors vendor;
|
||||
/* version */
|
||||
float version;
|
||||
int major_version;
|
||||
int minor_version;
|
||||
/* extensions */
|
||||
int glsl_available;
|
||||
int vertex_buffer_obj_available;
|
||||
int vertex_array_obj_available;
|
||||
int map_buffer_range_available;
|
||||
int fragment_program_available;
|
||||
int frame_buffer_object_available;
|
||||
};
|
||||
#endif
|
||||
|
||||
struct nk_x11_vertex {
|
||||
float position[2];
|
||||
float uv[2];
|
||||
nk_byte col[4];
|
||||
};
|
||||
|
||||
struct nk_x11_device {
|
||||
#ifdef NK_XLIB_LOAD_OPENGL_EXTENSIONS
|
||||
struct opengl_info info;
|
||||
#endif
|
||||
struct nk_buffer cmds;
|
||||
struct nk_draw_null_texture null;
|
||||
GLuint vbo, vao, ebo;
|
||||
GLuint prog;
|
||||
GLuint vert_shdr;
|
||||
GLuint frag_shdr;
|
||||
GLint attrib_pos;
|
||||
GLint attrib_uv;
|
||||
GLint attrib_col;
|
||||
GLint uniform_tex;
|
||||
GLint uniform_proj;
|
||||
GLuint font_tex;
|
||||
};
|
||||
|
||||
static struct nk_x11 {
|
||||
struct nk_x11_device ogl;
|
||||
struct nk_context ctx;
|
||||
struct nk_font_atlas atlas;
|
||||
Cursor cursor;
|
||||
Display *dpy;
|
||||
Window win;
|
||||
long last_button_click;
|
||||
} x11;
|
||||
|
||||
#ifdef __APPLE__
|
||||
#define NK_SHADER_VERSION "#version 150\n"
|
||||
#else
|
||||
#define NK_SHADER_VERSION "#version 300 es\n"
|
||||
#endif
|
||||
|
||||
#ifdef NK_XLIB_LOAD_OPENGL_EXTENSIONS
|
||||
#include <GL/glx.h>
|
||||
|
||||
NK_INTERN long
|
||||
nk_timestamp(void)
|
||||
{
|
||||
struct timeval tv;
|
||||
if (gettimeofday(&tv, NULL) < 0) return 0;
|
||||
return (long)((long)tv.tv_sec * 1000 + (long)tv.tv_usec/1000);
|
||||
}
|
||||
|
||||
NK_INTERN int
|
||||
nk_x11_stricmpn(const char *a, const char *b, int len)
|
||||
{
|
||||
int i = 0;
|
||||
for (i = 0; i < len && a[i] && b[i]; ++i)
|
||||
if (a[i] != b[i]) return 1;
|
||||
if (i != len) return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
NK_INTERN int
|
||||
nk_x11_check_extension(struct opengl_info *GL, const char *ext)
|
||||
{
|
||||
const char *start, *where, *term;
|
||||
where = strchr(ext, ' ');
|
||||
if (where || *ext == '\0')
|
||||
return nk_false;
|
||||
|
||||
for (start = GL->extensions_str;;) {
|
||||
where = strstr((const char*)start, ext);
|
||||
if (!where) break;
|
||||
term = where + strlen(ext);
|
||||
if (where == start || *(where - 1) == ' ') {
|
||||
if (*term == ' ' || *term == '\0')
|
||||
return nk_true;
|
||||
}
|
||||
start = term;
|
||||
}
|
||||
return nk_false;
|
||||
}
|
||||
|
||||
#define GL_EXT(name) (nk##name)nk_gl_ext(#name)
|
||||
NK_INTERN __GLXextFuncPtr
|
||||
nk_gl_ext(const char *name)
|
||||
{
|
||||
__GLXextFuncPtr func;
|
||||
func = glXGetProcAddress((const GLubyte*)name);
|
||||
if (!func) {
|
||||
fprintf(stdout, "[GL]: failed to load extension: %s", name);
|
||||
return NULL;
|
||||
}
|
||||
return func;
|
||||
}
|
||||
|
||||
NK_INTERN int
|
||||
nk_load_opengl(struct opengl_info *gl)
|
||||
{
|
||||
int failed = nk_false;
|
||||
gl->version_str = (const char*)glGetString(GL_VERSION);
|
||||
glGetIntegerv(GL_MAJOR_VERSION, &gl->major_version);
|
||||
glGetIntegerv(GL_MINOR_VERSION, &gl->minor_version);
|
||||
if (gl->major_version < 2) {
|
||||
fprintf(stderr, "[GL]: Graphics card does not fullfill minimum OpenGL 2.0 support\n");
|
||||
return 0;
|
||||
}
|
||||
gl->version = (float)gl->major_version + (float)gl->minor_version * 0.1f;
|
||||
gl->renderer_str = (const char*)glGetString(GL_RENDERER);
|
||||
gl->extensions_str = (const char*)glGetString(GL_EXTENSIONS);
|
||||
gl->glsl_version_str = (const char*)glGetString(GL_SHADING_LANGUAGE_VERSION);
|
||||
gl->vendor_str = (const char*)glGetString(GL_VENDOR);
|
||||
if (!nk_x11_stricmpn(gl->vendor_str, "ATI", 4) ||
|
||||
!nk_x11_stricmpn(gl->vendor_str, "AMD", 4))
|
||||
gl->vendor = VENDOR_AMD;
|
||||
else if (!nk_x11_stricmpn(gl->vendor_str, "NVIDIA", 6))
|
||||
gl->vendor = VENDOR_NVIDIA;
|
||||
else if (!nk_x11_stricmpn(gl->vendor_str, "Intel", 5))
|
||||
gl->vendor = VENDOR_INTEL;
|
||||
else gl->vendor = VENDOR_UNKNOWN;
|
||||
|
||||
/* Extensions */
|
||||
gl->glsl_available = (gl->version >= 2.0f);
|
||||
if (gl->glsl_available) {
|
||||
/* GLSL core in OpenGL > 2 */
|
||||
glCreateShader = GL_EXT(glCreateShader);
|
||||
glShaderSource = GL_EXT(glShaderSource);
|
||||
glCompileShader = GL_EXT(glCompileShader);
|
||||
glGetShaderiv = GL_EXT(glGetShaderiv);
|
||||
glGetShaderInfoLog = GL_EXT(glGetShaderInfoLog);
|
||||
glDeleteShader = GL_EXT(glDeleteShader);
|
||||
glCreateProgram = GL_EXT(glCreateProgram);
|
||||
glAttachShader = GL_EXT(glAttachShader);
|
||||
glDetachShader = GL_EXT(glDetachShader);
|
||||
glLinkProgram = GL_EXT(glLinkProgram);
|
||||
glUseProgram = GL_EXT(glUseProgram);
|
||||
glGetProgramiv = GL_EXT(glGetProgramiv);
|
||||
glGetProgramInfoLog = GL_EXT(glGetProgramInfoLog);
|
||||
glDeleteProgram = GL_EXT(glDeleteProgram);
|
||||
glGetUniformLocation = GL_EXT(glGetUniformLocation);
|
||||
glGetAttribLocation = GL_EXT(glGetAttribLocation);
|
||||
glUniform1i = GL_EXT(glUniform1i);
|
||||
glUniform1f = GL_EXT(glUniform1f);
|
||||
glUniformMatrix3fv = GL_EXT(glUniformMatrix3fv);
|
||||
glUniformMatrix4fv = GL_EXT(glUniformMatrix4fv);
|
||||
}
|
||||
gl->vertex_buffer_obj_available = nk_x11_check_extension(gl, "GL_ARB_vertex_buffer_object");
|
||||
if (gl->vertex_buffer_obj_available) {
|
||||
/* GL_ARB_vertex_buffer_object */
|
||||
glGenBuffers = GL_EXT(glGenBuffers);
|
||||
glBindBuffer = GL_EXT(glBindBuffer);
|
||||
glBufferData = GL_EXT(glBufferData);
|
||||
glBufferSubData = GL_EXT(glBufferSubData);
|
||||
glMapBuffer = GL_EXT(glMapBuffer);
|
||||
glUnmapBuffer = GL_EXT(glUnmapBuffer);
|
||||
glDeleteBuffers = GL_EXT(glDeleteBuffers);
|
||||
}
|
||||
gl->fragment_program_available = nk_x11_check_extension(gl, "GL_ARB_fragment_program");
|
||||
if (gl->fragment_program_available) {
|
||||
/* GL_ARB_vertex_program / GL_ARB_fragment_program */
|
||||
glVertexAttribPointer = GL_EXT(glVertexAttribPointer);
|
||||
glEnableVertexAttribArray = GL_EXT(glEnableVertexAttribArray);
|
||||
glDisableVertexAttribArray = GL_EXT(glDisableVertexAttribArray);
|
||||
}
|
||||
gl->vertex_array_obj_available = nk_x11_check_extension(gl, "GL_ARB_vertex_array_object");
|
||||
if (gl->vertex_array_obj_available) {
|
||||
/* GL_ARB_vertex_array_object */
|
||||
glGenVertexArrays = GL_EXT(glGenVertexArrays);
|
||||
glBindVertexArray = GL_EXT(glBindVertexArray);
|
||||
glDeleteVertexArrays = GL_EXT(glDeleteVertexArrays);
|
||||
}
|
||||
gl->frame_buffer_object_available = nk_x11_check_extension(gl, "GL_ARB_framebuffer_object");
|
||||
if (gl->frame_buffer_object_available) {
|
||||
/* GL_ARB_framebuffer_object */
|
||||
glGenerateMipmap = GL_EXT(glGenerateMipmap);
|
||||
}
|
||||
if (!gl->vertex_buffer_obj_available) {
|
||||
fprintf(stdout, "[GL] Error: GL_ARB_vertex_buffer_object is not available!\n");
|
||||
failed = nk_true;
|
||||
}
|
||||
if (!gl->fragment_program_available) {
|
||||
fprintf(stdout, "[GL] Error: GL_ARB_fragment_program is not available!\n");
|
||||
failed = nk_true;
|
||||
}
|
||||
if (!gl->vertex_array_obj_available) {
|
||||
fprintf(stdout, "[GL] Error: GL_ARB_vertex_array_object is not available!\n");
|
||||
failed = nk_true;
|
||||
}
|
||||
if (!gl->frame_buffer_object_available) {
|
||||
fprintf(stdout, "[GL] Error: GL_ARB_framebuffer_object is not available!\n");
|
||||
failed = nk_true;
|
||||
}
|
||||
return !failed;
|
||||
}
|
||||
#endif
|
||||
|
||||
NK_API int
|
||||
nk_x11_device_create(void)
|
||||
{
|
||||
GLint status;
|
||||
static const GLchar *vertex_shader =
|
||||
NK_SHADER_VERSION
|
||||
"uniform mat4 ProjMtx;\n"
|
||||
"in vec2 Position;\n"
|
||||
"in vec2 TexCoord;\n"
|
||||
"in vec4 Color;\n"
|
||||
"out vec2 Frag_UV;\n"
|
||||
"out vec4 Frag_Color;\n"
|
||||
"void main() {\n"
|
||||
" Frag_UV = TexCoord;\n"
|
||||
" Frag_Color = Color;\n"
|
||||
" gl_Position = ProjMtx * vec4(Position.xy, 0, 1);\n"
|
||||
"}\n";
|
||||
static const GLchar *fragment_shader =
|
||||
NK_SHADER_VERSION
|
||||
"precision mediump float;\n"
|
||||
"uniform sampler2D Texture;\n"
|
||||
"in vec2 Frag_UV;\n"
|
||||
"in vec4 Frag_Color;\n"
|
||||
"out vec4 Out_Color;\n"
|
||||
"void main(){\n"
|
||||
" Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n"
|
||||
"}\n";
|
||||
|
||||
struct nk_x11_device *dev = &x11.ogl;
|
||||
#ifdef NK_XLIB_LOAD_OPENGL_EXTENSIONS
|
||||
if (!nk_load_opengl(&dev->info)) return 0;
|
||||
#endif
|
||||
nk_buffer_init_default(&dev->cmds);
|
||||
|
||||
dev->prog = glCreateProgram();
|
||||
dev->vert_shdr = glCreateShader(GL_VERTEX_SHADER);
|
||||
dev->frag_shdr = glCreateShader(GL_FRAGMENT_SHADER);
|
||||
glShaderSource(dev->vert_shdr, 1, &vertex_shader, 0);
|
||||
glShaderSource(dev->frag_shdr, 1, &fragment_shader, 0);
|
||||
glCompileShader(dev->vert_shdr);
|
||||
glCompileShader(dev->frag_shdr);
|
||||
glGetShaderiv(dev->vert_shdr, GL_COMPILE_STATUS, &status);
|
||||
assert(status == GL_TRUE);
|
||||
glGetShaderiv(dev->frag_shdr, GL_COMPILE_STATUS, &status);
|
||||
assert(status == GL_TRUE);
|
||||
glAttachShader(dev->prog, dev->vert_shdr);
|
||||
glAttachShader(dev->prog, dev->frag_shdr);
|
||||
glLinkProgram(dev->prog);
|
||||
glGetProgramiv(dev->prog, GL_LINK_STATUS, &status);
|
||||
assert(status == GL_TRUE);
|
||||
|
||||
dev->uniform_tex = glGetUniformLocation(dev->prog, "Texture");
|
||||
dev->uniform_proj = glGetUniformLocation(dev->prog, "ProjMtx");
|
||||
dev->attrib_pos = glGetAttribLocation(dev->prog, "Position");
|
||||
dev->attrib_uv = glGetAttribLocation(dev->prog, "TexCoord");
|
||||
dev->attrib_col = glGetAttribLocation(dev->prog, "Color");
|
||||
|
||||
{
|
||||
/* buffer setup */
|
||||
GLsizei vs = sizeof(struct nk_x11_vertex);
|
||||
size_t vp = offsetof(struct nk_x11_vertex, position);
|
||||
size_t vt = offsetof(struct nk_x11_vertex, uv);
|
||||
size_t vc = offsetof(struct nk_x11_vertex, col);
|
||||
|
||||
glGenBuffers(1, &dev->vbo);
|
||||
glGenBuffers(1, &dev->ebo);
|
||||
glGenVertexArrays(1, &dev->vao);
|
||||
|
||||
glBindVertexArray(dev->vao);
|
||||
glBindBuffer(GL_ARRAY_BUFFER, dev->vbo);
|
||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, dev->ebo);
|
||||
|
||||
glEnableVertexAttribArray((GLuint)dev->attrib_pos);
|
||||
glEnableVertexAttribArray((GLuint)dev->attrib_uv);
|
||||
glEnableVertexAttribArray((GLuint)dev->attrib_col);
|
||||
|
||||
glVertexAttribPointer((GLuint)dev->attrib_pos, 2, GL_FLOAT, GL_FALSE, vs, (void*)vp);
|
||||
glVertexAttribPointer((GLuint)dev->attrib_uv, 2, GL_FLOAT, GL_FALSE, vs, (void*)vt);
|
||||
glVertexAttribPointer((GLuint)dev->attrib_col, 4, GL_UNSIGNED_BYTE, GL_TRUE, vs, (void*)vc);
|
||||
}
|
||||
|
||||
glBindTexture(GL_TEXTURE_2D, 0);
|
||||
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
|
||||
glBindVertexArray(0);
|
||||
return 1;
|
||||
}
|
||||
|
||||
NK_INTERN void
|
||||
nk_x11_device_upload_atlas(const void *image, int width, int height)
|
||||
{
|
||||
struct nk_x11_device *dev = &x11.ogl;
|
||||
glGenTextures(1, &dev->font_tex);
|
||||
glBindTexture(GL_TEXTURE_2D, dev->font_tex);
|
||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, (GLsizei)width, (GLsizei)height, 0,
|
||||
GL_RGBA, GL_UNSIGNED_BYTE, image);
|
||||
}
|
||||
|
||||
NK_API void
|
||||
nk_x11_device_destroy(void)
|
||||
{
|
||||
struct nk_x11_device *dev = &x11.ogl;
|
||||
glDetachShader(dev->prog, dev->vert_shdr);
|
||||
glDetachShader(dev->prog, dev->frag_shdr);
|
||||
glDeleteShader(dev->vert_shdr);
|
||||
glDeleteShader(dev->frag_shdr);
|
||||
glDeleteProgram(dev->prog);
|
||||
glDeleteTextures(1, &dev->font_tex);
|
||||
glDeleteBuffers(1, &dev->vbo);
|
||||
glDeleteBuffers(1, &dev->ebo);
|
||||
nk_buffer_free(&dev->cmds);
|
||||
}
|
||||
|
||||
NK_API void
|
||||
nk_x11_render(enum nk_anti_aliasing AA, int max_vertex_buffer, int max_element_buffer)
|
||||
{
|
||||
int width, height;
|
||||
XWindowAttributes attr;
|
||||
struct nk_x11_device *dev = &x11.ogl;
|
||||
GLfloat ortho[4][4] = {
|
||||
{2.0f, 0.0f, 0.0f, 0.0f},
|
||||
{0.0f,-2.0f, 0.0f, 0.0f},
|
||||
{0.0f, 0.0f,-1.0f, 0.0f},
|
||||
{-1.0f,1.0f, 0.0f, 1.0f},
|
||||
};
|
||||
XGetWindowAttributes(x11.dpy, x11.win, &attr);
|
||||
width = attr.width;
|
||||
height = attr.height;
|
||||
|
||||
ortho[0][0] /= (GLfloat)width;
|
||||
ortho[1][1] /= (GLfloat)height;
|
||||
|
||||
/* setup global state */
|
||||
glEnable(GL_BLEND);
|
||||
glBlendEquation(GL_FUNC_ADD);
|
||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||
glDisable(GL_CULL_FACE);
|
||||
glDisable(GL_DEPTH_TEST);
|
||||
glEnable(GL_SCISSOR_TEST);
|
||||
glActiveTexture(GL_TEXTURE0);
|
||||
|
||||
/* setup program */
|
||||
glUseProgram(dev->prog);
|
||||
glUniform1i(dev->uniform_tex, 0);
|
||||
glUniformMatrix4fv(dev->uniform_proj, 1, GL_FALSE, &ortho[0][0]);
|
||||
glViewport(0,0,(GLsizei)width,(GLsizei)height);
|
||||
{
|
||||
/* convert from command queue into draw list and draw to screen */
|
||||
const struct nk_draw_command *cmd;
|
||||
void *vertices, *elements;
|
||||
const nk_draw_index *offset = NULL;
|
||||
struct nk_buffer vbuf, ebuf;
|
||||
|
||||
/* allocate vertex and element buffer */
|
||||
glBindVertexArray(dev->vao);
|
||||
glBindBuffer(GL_ARRAY_BUFFER, dev->vbo);
|
||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, dev->ebo);
|
||||
|
||||
glBufferData(GL_ARRAY_BUFFER, max_vertex_buffer, NULL, GL_STREAM_DRAW);
|
||||
glBufferData(GL_ELEMENT_ARRAY_BUFFER, max_element_buffer, NULL, GL_STREAM_DRAW);
|
||||
|
||||
/* load draw vertices & elements directly into vertex + element buffer */
|
||||
vertices = glMapBuffer(GL_ARRAY_BUFFER, GL_WRITE_ONLY);
|
||||
elements = glMapBuffer(GL_ELEMENT_ARRAY_BUFFER, GL_WRITE_ONLY);
|
||||
{
|
||||
/* fill convert configuration */
|
||||
struct nk_convert_config config;
|
||||
static const struct nk_draw_vertex_layout_element vertex_layout[] = {
|
||||
{NK_VERTEX_POSITION, NK_FORMAT_FLOAT, NK_OFFSETOF(struct nk_x11_vertex, position)},
|
||||
{NK_VERTEX_TEXCOORD, NK_FORMAT_FLOAT, NK_OFFSETOF(struct nk_x11_vertex, uv)},
|
||||
{NK_VERTEX_COLOR, NK_FORMAT_R8G8B8A8, NK_OFFSETOF(struct nk_x11_vertex, col)},
|
||||
{NK_VERTEX_LAYOUT_END}
|
||||
};
|
||||
NK_MEMSET(&config, 0, sizeof(config));
|
||||
config.vertex_layout = vertex_layout;
|
||||
config.vertex_size = sizeof(struct nk_x11_vertex);
|
||||
config.vertex_alignment = NK_ALIGNOF(struct nk_x11_vertex);
|
||||
config.null = dev->null;
|
||||
config.circle_segment_count = 22;
|
||||
config.curve_segment_count = 22;
|
||||
config.arc_segment_count = 22;
|
||||
config.global_alpha = 1.0f;
|
||||
config.shape_AA = AA;
|
||||
config.line_AA = AA;
|
||||
|
||||
/* setup buffers to load vertices and elements */
|
||||
nk_buffer_init_fixed(&vbuf, vertices, (size_t)max_vertex_buffer);
|
||||
nk_buffer_init_fixed(&ebuf, elements, (size_t)max_element_buffer);
|
||||
nk_convert(&x11.ctx, &dev->cmds, &vbuf, &ebuf, &config);
|
||||
}
|
||||
glUnmapBuffer(GL_ARRAY_BUFFER);
|
||||
glUnmapBuffer(GL_ELEMENT_ARRAY_BUFFER);
|
||||
|
||||
/* iterate over and execute each draw command */
|
||||
nk_draw_foreach(cmd, &x11.ctx, &dev->cmds)
|
||||
{
|
||||
if (!cmd->elem_count) continue;
|
||||
glBindTexture(GL_TEXTURE_2D, (GLuint)cmd->texture.id);
|
||||
glScissor(
|
||||
(GLint)(cmd->clip_rect.x),
|
||||
(GLint)((height - (GLint)(cmd->clip_rect.y + cmd->clip_rect.h))),
|
||||
(GLint)(cmd->clip_rect.w),
|
||||
(GLint)(cmd->clip_rect.h));
|
||||
glDrawElements(GL_TRIANGLES, (GLsizei)cmd->elem_count, GL_UNSIGNED_SHORT, offset);
|
||||
offset += cmd->elem_count;
|
||||
}
|
||||
nk_clear(&x11.ctx);
|
||||
}
|
||||
|
||||
/* default OpenGL state */
|
||||
glUseProgram(0);
|
||||
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
|
||||
glBindVertexArray(0);
|
||||
glDisable(GL_BLEND);
|
||||
glDisable(GL_SCISSOR_TEST);
|
||||
}
|
||||
|
||||
NK_API void
|
||||
nk_x11_font_stash_begin(struct nk_font_atlas **atlas)
|
||||
{
|
||||
nk_font_atlas_init_default(&x11.atlas);
|
||||
nk_font_atlas_begin(&x11.atlas);
|
||||
*atlas = &x11.atlas;
|
||||
}
|
||||
|
||||
NK_API void
|
||||
nk_x11_font_stash_end(void)
|
||||
{
|
||||
const void *image; int w, h;
|
||||
image = nk_font_atlas_bake(&x11.atlas, &w, &h, NK_FONT_ATLAS_RGBA32);
|
||||
nk_x11_device_upload_atlas(image, w, h);
|
||||
nk_font_atlas_end(&x11.atlas, nk_handle_id((int)x11.ogl.font_tex), &x11.ogl.null);
|
||||
if (x11.atlas.default_font)
|
||||
nk_style_set_font(&x11.ctx, &x11.atlas.default_font->handle);
|
||||
}
|
||||
|
||||
NK_API int
|
||||
nk_x11_handle_event(XEvent *evt)
|
||||
{
|
||||
struct nk_context *ctx = &x11.ctx;
|
||||
|
||||
/* optional grabbing behavior */
|
||||
if (ctx->input.mouse.grab) {
|
||||
XDefineCursor(x11.dpy, x11.win, x11.cursor);
|
||||
ctx->input.mouse.grab = 0;
|
||||
} else if (ctx->input.mouse.ungrab) {
|
||||
XWarpPointer(x11.dpy, None, x11.win, 0, 0, 0, 0,
|
||||
(int)ctx->input.mouse.pos.x, (int)ctx->input.mouse.pos.y);
|
||||
XUndefineCursor(x11.dpy, x11.win);
|
||||
ctx->input.mouse.ungrab = 0;
|
||||
}
|
||||
|
||||
if (evt->type == KeyPress || evt->type == KeyRelease)
|
||||
{
|
||||
/* Key handler */
|
||||
int ret, down = (evt->type == KeyPress);
|
||||
KeySym *code = XGetKeyboardMapping(x11.dpy, (KeyCode)evt->xkey.keycode, 1, &ret);
|
||||
if (*code == XK_Shift_L || *code == XK_Shift_R) nk_input_key(ctx, NK_KEY_SHIFT, down);
|
||||
else if (*code == XK_Delete) nk_input_key(ctx, NK_KEY_DEL, down);
|
||||
else if (*code == XK_Return) nk_input_key(ctx, NK_KEY_ENTER, down);
|
||||
else if (*code == XK_Tab) nk_input_key(ctx, NK_KEY_TAB, down);
|
||||
else if (*code == XK_Left) nk_input_key(ctx, NK_KEY_LEFT, down);
|
||||
else if (*code == XK_Right) nk_input_key(ctx, NK_KEY_RIGHT, down);
|
||||
else if (*code == XK_Up) nk_input_key(ctx, NK_KEY_UP, down);
|
||||
else if (*code == XK_Down) nk_input_key(ctx, NK_KEY_DOWN, down);
|
||||
else if (*code == XK_BackSpace) nk_input_key(ctx, NK_KEY_BACKSPACE, down);
|
||||
else if (*code == XK_space && !down) nk_input_char(ctx, ' ');
|
||||
else if (*code == XK_Page_Up) nk_input_key(ctx, NK_KEY_SCROLL_UP, down);
|
||||
else if (*code == XK_Page_Down) nk_input_key(ctx, NK_KEY_SCROLL_DOWN, down);
|
||||
else if (*code == XK_Home) {
|
||||
nk_input_key(ctx, NK_KEY_TEXT_START, down);
|
||||
nk_input_key(ctx, NK_KEY_SCROLL_START, down);
|
||||
} else if (*code == XK_End) {
|
||||
nk_input_key(ctx, NK_KEY_TEXT_END, down);
|
||||
nk_input_key(ctx, NK_KEY_SCROLL_END, down);
|
||||
} else {
|
||||
if (*code == 'c' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_COPY, down);
|
||||
else if (*code == 'v' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_PASTE, down);
|
||||
else if (*code == 'x' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_CUT, down);
|
||||
else if (*code == 'z' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_TEXT_UNDO, down);
|
||||
else if (*code == 'r' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_TEXT_REDO, down);
|
||||
else if (*code == XK_Left && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_TEXT_WORD_LEFT, down);
|
||||
else if (*code == XK_Right && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_TEXT_WORD_RIGHT, down);
|
||||
else if (*code == 'b' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_TEXT_LINE_START, down);
|
||||
else if (*code == 'e' && (evt->xkey.state & ControlMask))
|
||||
nk_input_key(ctx, NK_KEY_TEXT_LINE_END, down);
|
||||
else {
|
||||
if (*code == 'i')
|
||||
nk_input_key(ctx, NK_KEY_TEXT_INSERT_MODE, down);
|
||||
else if (*code == 'r')
|
||||
nk_input_key(ctx, NK_KEY_TEXT_REPLACE_MODE, down);
|
||||
if (down) {
|
||||
char buf[32];
|
||||
KeySym keysym = 0;
|
||||
if (XLookupString((XKeyEvent*)evt, buf, 32, &keysym, NULL) != NoSymbol)
|
||||
nk_input_glyph(ctx, buf);
|
||||
}
|
||||
}
|
||||
}
|
||||
XFree(code);
|
||||
return 1;
|
||||
} else if (evt->type == ButtonPress || evt->type == ButtonRelease) {
|
||||
/* Button handler */
|
||||
int down = (evt->type == ButtonPress);
|
||||
const int x = evt->xbutton.x, y = evt->xbutton.y;
|
||||
if (evt->xbutton.button == Button1) {
|
||||
if (down) { /* Double-Click Button handler */
|
||||
long dt = nk_timestamp() - x11.last_button_click;
|
||||
if (dt > NK_X11_DOUBLE_CLICK_LO && dt < NK_X11_DOUBLE_CLICK_HI)
|
||||
nk_input_button(ctx, NK_BUTTON_DOUBLE, x, y, nk_true);
|
||||
x11.last_button_click = nk_timestamp();
|
||||
} else nk_input_button(ctx, NK_BUTTON_DOUBLE, x, y, nk_false);
|
||||
nk_input_button(ctx, NK_BUTTON_LEFT, x, y, down);
|
||||
} else if (evt->xbutton.button == Button2)
|
||||
nk_input_button(ctx, NK_BUTTON_MIDDLE, x, y, down);
|
||||
else if (evt->xbutton.button == Button3)
|
||||
nk_input_button(ctx, NK_BUTTON_RIGHT, x, y, down);
|
||||
else if (evt->xbutton.button == Button4)
|
||||
nk_input_scroll(ctx, nk_vec2(0,1.0f));
|
||||
else if (evt->xbutton.button == Button5)
|
||||
nk_input_scroll(ctx, nk_vec2(0,-1.0f));
|
||||
else return 0;
|
||||
return 1;
|
||||
} else if (evt->type == MotionNotify) {
|
||||
/* Mouse motion handler */
|
||||
const int x = evt->xmotion.x, y = evt->xmotion.y;
|
||||
nk_input_motion(ctx, x, y);
|
||||
if (ctx->input.mouse.grabbed) {
|
||||
ctx->input.mouse.pos.x = ctx->input.mouse.prev.x;
|
||||
ctx->input.mouse.pos.y = ctx->input.mouse.prev.y;
|
||||
XWarpPointer(x11.dpy, None, x11.win, 0, 0, 0, 0, (int)ctx->input.mouse.pos.x, (int)ctx->input.mouse.pos.y);
|
||||
}
|
||||
return 1;
|
||||
} else if (evt->type == KeymapNotify) {
|
||||
XRefreshKeyboardMapping(&evt->xmapping);
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
NK_API struct nk_context*
|
||||
nk_x11_init(Display *dpy, Window win)
|
||||
{
|
||||
if (!setlocale(LC_ALL,"")) return 0;
|
||||
if (!XSupportsLocale()) return 0;
|
||||
if (!XSetLocaleModifiers("@im=none")) return 0;
|
||||
if (!nk_x11_device_create()) return 0;
|
||||
|
||||
x11.dpy = dpy;
|
||||
x11.win = win;
|
||||
|
||||
/* create invisible cursor */
|
||||
{static XColor dummy; char data[1] = {0};
|
||||
Pixmap blank = XCreateBitmapFromData(dpy, win, data, 1, 1);
|
||||
if (blank == None) return 0;
|
||||
x11.cursor = XCreatePixmapCursor(dpy, blank, blank, &dummy, &dummy, 0, 0);
|
||||
XFreePixmap(dpy, blank);}
|
||||
|
||||
nk_init_default(&x11.ctx, 0);
|
||||
return &x11.ctx;
|
||||
}
|
||||
|
||||
NK_API void
|
||||
nk_x11_shutdown(void)
|
||||
{
|
||||
nk_font_atlas_clear(&x11.atlas);
|
||||
nk_free(&x11.ctx);
|
||||
nk_x11_device_destroy();
|
||||
XFreeCursor(x11.dpy, x11.cursor);
|
||||
memset(&x11, 0, sizeof(x11));
|
||||
}
|
||||
|
||||
#endif
|
||||
359
glava-config/window.lua
Normal file
359
glava-config/window.lua
Normal file
@@ -0,0 +1,359 @@
|
||||
return function()
|
||||
local lgi = require 'lgi'
|
||||
local GObject = lgi.GObject
|
||||
local Gtk = lgi.Gtk
|
||||
local Pango = lgi.Pango
|
||||
local Gdk = lgi.Gdk
|
||||
local GdkPixbuf = lgi.GdkPixbuf
|
||||
|
||||
local ItemColumn = {
|
||||
PROFILE = 1,
|
||||
ENABLED = 2,
|
||||
ACTIVABLE = 3,
|
||||
WEIGHT = 4,
|
||||
VISIBLE = 5
|
||||
}
|
||||
|
||||
-- Fill store with initial items.
|
||||
local item_store = Gtk.ListStore.new {
|
||||
[ItemColumn.PROFILE] = GObject.Type.STRING,
|
||||
[ItemColumn.ENABLED] = GObject.Type.BOOLEAN,
|
||||
[ItemColumn.ACTIVABLE] = GObject.Type.BOOLEAN,
|
||||
[ItemColumn.VISIBLE] = GObject.Type.BOOLEAN,
|
||||
[ItemColumn.WEIGHT] = GObject.Type.INT
|
||||
}
|
||||
|
||||
local default_entry = {
|
||||
[ItemColumn.PROFILE] = "Default",
|
||||
[ItemColumn.ENABLED] = false,
|
||||
[ItemColumn.VISIBLE] = false,
|
||||
[ItemColumn.ACTIVABLE] = false,
|
||||
[ItemColumn.WEIGHT] = 600
|
||||
}
|
||||
|
||||
local function ComboBoxFixed(tbl)
|
||||
local inst = Gtk.ComboBoxText { id = tbl.id }
|
||||
for _, v in pairs(tbl) do
|
||||
if type(v) == "table" then
|
||||
inst:append_text(v[1])
|
||||
end
|
||||
end
|
||||
inst:set_active(tbl.default or 0)
|
||||
return inst
|
||||
end
|
||||
|
||||
local ConfigView = function(tbl)
|
||||
local list = {}
|
||||
local idx = 0
|
||||
for _, entry in pairs(tbl) do
|
||||
list[#list + 1] = {
|
||||
Gtk.Label { label = entry[1], xalign = 0 },
|
||||
left_attach = 0, top_attach = idx
|
||||
}
|
||||
list[#list + 1] = {
|
||||
Gtk.Alignment { xscale = 0, yscale = 0, xalign = 1, entry[2] },
|
||||
left_attach = 1, top_attach = idx
|
||||
}
|
||||
idx = idx + 1
|
||||
end
|
||||
return Gtk.ScrolledWindow {
|
||||
shadow_type = "IN",
|
||||
expand = true,
|
||||
Gtk.Alignment {
|
||||
top_padding = 12,
|
||||
left_padding = 20,
|
||||
right_padding = 20,
|
||||
xscale = 1,
|
||||
yscale = 1,
|
||||
xalign = 0,
|
||||
Gtk.Grid {
|
||||
row_spacing = 5,
|
||||
column_spacing = 12,
|
||||
column_homogeneous = true,
|
||||
unpack(list)
|
||||
}
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
local ServiceView = function(self)
|
||||
local switch = Gtk.Switch { id = "autostart_enabled", sensitive = false }
|
||||
local method = ComboBoxFixed {
|
||||
{ "None" },
|
||||
{ "SystemD User Service" },
|
||||
{ "InitD Entry" },
|
||||
{ "Desktop Entry" }
|
||||
}
|
||||
method.on_changed = function(box)
|
||||
local opt = box:get_active_text()
|
||||
switch.sensitive = opt ~= "None"
|
||||
if switch.active == true and opt == "None" then
|
||||
switch:activate()
|
||||
end
|
||||
for _, entry in item_store:pairs() do
|
||||
if entry[ItemColumn.PROFILE] == self.name then
|
||||
entry[ItemColumn.ACTIVABLE] = opt ~= "None"
|
||||
if opt == "None" then
|
||||
entry[ItemColumn.ENABLED] = false
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
switch.on_notify["active"] = function(inst, pspec)
|
||||
for _, entry in item_store:pairs() do
|
||||
if entry[ItemColumn.PROFILE] == self.name then
|
||||
entry[ItemColumn.ENABLED] = switch.active
|
||||
end
|
||||
end
|
||||
-- TODO handle enable here
|
||||
end
|
||||
return ConfigView { { "Enabled", switch }, { "Autostart Method", method } }
|
||||
end
|
||||
|
||||
local ProfileView = function(name)
|
||||
local self = { name = name }
|
||||
local notebook = Gtk.Notebook {
|
||||
expand = true,
|
||||
{ tab_label = "Global Options",
|
||||
Gtk.ScrolledWindow {
|
||||
shadow_type = "IN",
|
||||
Gtk.Box {}
|
||||
}
|
||||
},
|
||||
{ tab_label = "Smoothing Options",
|
||||
Gtk.ScrolledWindow {
|
||||
shadow_type = "IN",
|
||||
Gtk.Box {}
|
||||
}
|
||||
},
|
||||
{ tab_label = "Module Options",
|
||||
Gtk.ScrolledWindow {
|
||||
shadow_type = "IN",
|
||||
Gtk.Box {}
|
||||
}
|
||||
},
|
||||
{ tab_label = "Autostart",
|
||||
name ~= "Default" and ServiceView(self) or Gtk.Label {
|
||||
label = "Autostart options are not available for the default user profile." }
|
||||
}
|
||||
}
|
||||
notebook:show_all()
|
||||
self.widget = notebook
|
||||
function self:rename(new)
|
||||
self.name = new
|
||||
end
|
||||
function self:delete()
|
||||
|
||||
end
|
||||
return self;
|
||||
end
|
||||
|
||||
local view_registry = {}
|
||||
view_registry[default_entry[ItemColumn.PROFILE]] = ProfileView(default_entry[ItemColumn.PROFILE])
|
||||
item_store:append(default_entry)
|
||||
|
||||
local window = Gtk.Window {
|
||||
title = "GLava Config",
|
||||
default_width = 320,
|
||||
default_height = 200,
|
||||
border_width = 5,
|
||||
Gtk.Box {
|
||||
orientation = "HORIZONTAL",
|
||||
spacing = 8,
|
||||
homogeneous = false,
|
||||
Gtk.Box {
|
||||
orientation = "VERTICAL",
|
||||
spacing = 5,
|
||||
Gtk.ScrolledWindow {
|
||||
shadow_type = "ETCHED_IN",
|
||||
vexpand = true,
|
||||
width_request = 200,
|
||||
Gtk.TreeView {
|
||||
id = "view",
|
||||
model = item_store,
|
||||
activate_on_single_click = true,
|
||||
Gtk.TreeViewColumn {
|
||||
title = "Profile",
|
||||
expand = true,
|
||||
{
|
||||
Gtk.CellRendererText {
|
||||
id = "profile_renderer"
|
||||
},
|
||||
{
|
||||
text = ItemColumn.PROFILE,
|
||||
editable = ItemColumn.VISIBLE,
|
||||
weight = ItemColumn.WEIGHT
|
||||
}
|
||||
}
|
||||
},
|
||||
Gtk.TreeViewColumn {
|
||||
title = "Enabled",
|
||||
alignment = 0.5,
|
||||
{
|
||||
Gtk.CellRendererToggle {
|
||||
id = "toggle_renderer",
|
||||
xalign = 0.5
|
||||
},
|
||||
{
|
||||
active = ItemColumn.ENABLED,
|
||||
activatable = ItemColumn.ACTIVABLE,
|
||||
visible = ItemColumn.VISIBLE
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
Gtk.Box {
|
||||
orientation = "HORIZONTAL",
|
||||
spacing = 4,
|
||||
Gtk.Alignment {
|
||||
xscale = 0,
|
||||
Gtk.Box {
|
||||
homogeneous = true,
|
||||
Gtk.Button {
|
||||
id = "reload",
|
||||
label = "Reload",
|
||||
image = Gtk.Image { stock = Gtk.STOCK_REFRESH }
|
||||
},
|
||||
Gtk.Button {
|
||||
id = "add",
|
||||
label = "New",
|
||||
image = Gtk.Image { stock = Gtk.STOCK_NEW },
|
||||
},
|
||||
Gtk.Button {
|
||||
id = "remove",
|
||||
label = "Delete",
|
||||
sensitive = false,
|
||||
image = Gtk.Image { stock = Gtk.STOCK_DELETE },
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
Gtk.Stack {
|
||||
id = "stack_view",
|
||||
expand = true,
|
||||
transition_type = Gtk.StackTransitionType.CROSSFADE
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
local selection = window.child.view:get_selection()
|
||||
selection.mode = 'SINGLE'
|
||||
window.child.stack_view:add_named(view_registry[default_entry[ItemColumn.PROFILE]].widget,
|
||||
default_entry[ItemColumn.PROFILE])
|
||||
|
||||
function unique_profile(profile_name_proto)
|
||||
local profile_idx = 0
|
||||
local profile_name = profile_name_proto
|
||||
while true do
|
||||
local used = false
|
||||
for i, entry in item_store:pairs() do
|
||||
if entry[ItemColumn.PROFILE] == profile_name then
|
||||
used = true
|
||||
end
|
||||
end
|
||||
if not used then break else
|
||||
profile_idx = profile_idx + 1
|
||||
profile_name = profile_name_proto .. " (" .. tostring(profile_idx) .. ")"
|
||||
end
|
||||
end
|
||||
return profile_name
|
||||
end
|
||||
|
||||
function window.child.view:on_row_activated(path, column)
|
||||
local name = item_store[path][ItemColumn.PROFILE]
|
||||
window.child.stack_view:set_visible_child_name(name)
|
||||
window.child.remove.sensitive = (name ~= "Default")
|
||||
end
|
||||
|
||||
function window.child.profile_renderer:on_edited(path_string, new_profile)
|
||||
local path = Gtk.TreePath.new_from_string(path_string)
|
||||
local old = item_store[path][ItemColumn.PROFILE]
|
||||
local store = window.child.stack_view:get_child_by_name(old)
|
||||
new_profile = string.match(new_profile, "^%s*(.-)%s*$")
|
||||
if old == new_profile or new_profile == "Default" then return end
|
||||
new_profile = unique_profile(new_profile)
|
||||
print("Renamining profile \"" .. old .. "\" -> \"" .. new_profile .. "\"")
|
||||
window.child.stack_view:remove(store)
|
||||
window.child.stack_view:add_named(store, new_profile)
|
||||
local vstore = view_registry[old]
|
||||
view_registry[old] = nil
|
||||
view_registry[new_profile] = vstore
|
||||
vstore:rename(new_profile)
|
||||
item_store[path][ItemColumn.PROFILE] = new_profile
|
||||
end
|
||||
|
||||
function window.child.toggle_renderer:on_toggled(path_string)
|
||||
local path = Gtk.TreePath.new_from_string(path_string)
|
||||
if view_registry[item_store[path][ItemColumn.PROFILE]].widget.child.autostart_enabled.active
|
||||
~= not item_store[path][ItemColumn.ENABLED] then
|
||||
view_registry[item_store[path][ItemColumn.PROFILE]].widget.child.autostart_enabled:activate()
|
||||
end
|
||||
item_store[path][ItemColumn.ENABLED] =
|
||||
view_registry[item_store[path][ItemColumn.PROFILE]].widget.child.autostart_enabled.active
|
||||
end
|
||||
|
||||
function window.child.add:on_clicked()
|
||||
local profile_name = unique_profile("New Profile")
|
||||
local entry = {
|
||||
[ItemColumn.PROFILE] = profile_name,
|
||||
[ItemColumn.ENABLED] = false,
|
||||
[ItemColumn.ACTIVABLE] = false,
|
||||
[ItemColumn.VISIBLE] = true
|
||||
}
|
||||
local view = ProfileView(profile_name)
|
||||
item_store:append(entry)
|
||||
view_registry[profile_name] = view
|
||||
window.child.stack_view:add_named(view.widget, profile_name);
|
||||
end
|
||||
|
||||
function window.child.remove:on_clicked()
|
||||
local dialog = Gtk.Dialog {
|
||||
title = "Confirmation",
|
||||
transient_for = window,
|
||||
modal = true,
|
||||
destroy_with_parent = true
|
||||
}
|
||||
local byes = dialog:add_button(Gtk.STOCK_YES, Gtk.ResponseType.YES)
|
||||
local bcancel = dialog:add_button(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL)
|
||||
dialog:get_action_area().halign = Gtk.Align.CENTER
|
||||
local box = Gtk.Box {
|
||||
orientation = 'HORIZONTAL',
|
||||
spacing = 8,
|
||||
border_width = 8,
|
||||
Gtk.Image {
|
||||
stock = Gtk.STOCK_DIALOG_WARNING,
|
||||
icon_size = Gtk.IconSize.DIALOG,
|
||||
},
|
||||
Gtk.Label {
|
||||
label = "Are you sure you want to delete the selected profile?"
|
||||
}
|
||||
}
|
||||
dialog:get_content_area():add(box)
|
||||
box:show_all()
|
||||
local ret = dialog:run()
|
||||
dialog:set_visible(false)
|
||||
if ret ~= Gtk.ResponseType.YES then return end
|
||||
|
||||
local model, iter = selection:get_selected()
|
||||
if model and iter then
|
||||
for iter, entry in item_store:pairs() do
|
||||
if selection:iter_is_selected(iter) then
|
||||
window.child.stack_view:remove(
|
||||
window.child.stack_view:get_child_by_name(
|
||||
entry[ItemColumn.PROFILE]))
|
||||
view_registry[entry[ItemColumn.PROFILE]]:delete()
|
||||
view_registry[entry[ItemColumn.PROFILE]] = nil
|
||||
end
|
||||
end
|
||||
model:remove(iter)
|
||||
end
|
||||
end
|
||||
|
||||
function window:on_destroy() os.exit(0) end
|
||||
|
||||
window:show_all()
|
||||
window:set_icon_from_file(glava.resource_path .. "glava.ico")
|
||||
Gtk.main()
|
||||
end
|
||||
Reference in New Issue
Block a user