55a9d4f930996d24fc76ee303ffd749fd02cbbc7
[uwplayer.git] / application / main.c
1 /*
2  * Copyright 2022 Olaf Wintermann
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a 
5  * copy of this software and associated documentation files (the "Software"), 
6  * to deal in the Software without restriction, including without limitation 
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense, 
8  * and/or sell copies of the Software, and to permit persons to whom the 
9  * Software is furnished to do so, subject to the following conditions:
10  * 
11  * The above copyright notice and this permission notice shall be included in 
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
20  * DEALINGS IN THE SOFTWARE.
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <locale.h>
27 #include <time.h>
28 #include <inttypes.h>
29
30 #include "window.h"
31 #include "main.h"
32 #include "settings.h"
33
34 #include <ucx/buffer.h>
35 #include <ucx/utils.h>
36
37 static XtAppContext app;
38 static Display *display;
39 static Widget toplevel_window;
40
41 static String fallback[] = {
42         "*renderTable: rt",
43         "*rt*fontType: FONT_IS_XFT",
44         "*rt*fontName: Sans",
45         "*rt*fontSize: 9",
46         
47         "*pbbutton.shadowThickness: 1",
48         "*pbbutton.highlightThickness: 1",
49     
50         "*XmText.baseTranslations: #override\\n" \
51                                 "Ctrl~Alt~Meta<KeyPress>v: paste-clipboard()\\n" \
52                                 "Ctrl~Alt~Meta<KeyPress>c: copy-clipboard()\\n" \
53                                 "Ctrl~Alt~Meta<KeyPress>x: cut-clipboard()\\n" \
54                                 "Ctrl~Alt~Meta<KeyPress>u: delete-to-start-of-line()\\n",
55         "*XmTextField.baseTranslations: #override\\n" \
56                                 "Ctrl~Alt~Meta<KeyPress>v: paste-clipboard()\\n" \
57                                 "Ctrl~Alt~Meta<KeyPress>c: copy-clipboard()\\n" \
58                                 "Ctrl~Alt~Meta<KeyPress>x: cut-clipboard()\\n" \
59                                 "Ctrl~Alt~Meta<KeyPress>u: delete-to-start-of-line()\\n",
60         NULL
61 };
62
63 static String langProc(Display *dp, String xnl, XtPointer closure) {
64     setlocale(LC_ALL, xnl);
65     setlocale(LC_NUMERIC, "C");
66     return setlocale(LC_ALL, NULL);
67 }
68
69 int main(int argc, char** argv) {  
70     // disable stdout buffering, because the netbeans's internal terminal
71     // has a bug on freebsd and doesn't flush the output after a newline
72     setvbuf(stdout, NULL, _IONBF, 0);
73      
74     // initialize toolkit
75     XtToolkitInitialize();
76     XtSetLanguageProc(NULL, langProc, NULL);
77     app = XtCreateApplicationContext();
78     XtAppSetFallbackResources(app, fallback);
79        
80     display =  XtOpenDisplay(app, NULL, APP_NAME, APP_CLASS, NULL, 0, &argc, argv);
81     
82     // load settings
83     if(load_settings()) {
84         return 1;
85     }
86     
87     MainWindow *window = WindowCreate(display);
88     toplevel_window = window->window;
89     
90     // random numbers only used for creating tmp dirs
91     srand(time(NULL));
92     
93     WindowShow(window);
94     XtAppMainLoop(app);
95     
96     return 0;
97 }
98
99 XtAppContext* GetAppContext(void) {
100     return &app;
101 }
102
103 void ApplicationExit(void) {
104     XtAppSetExitFlag(app);
105 }
106
107 void AppAddTimeOut(unsigned long interval, XtTimerCallbackProc proc, XtPointer data) {
108     XtAppAddTimeOut(app, interval, proc, data);
109     
110     if(!toplevel_window) return;
111     
112     // send a dummy X11 event, because the event loop may be waiting
113     // and the timeout proc is only called when an event is processed
114     XClientMessageEvent event;
115     memset(&event, 0, sizeof(XClientMessageEvent));
116     event.type = ClientMessage;
117     event.window = XtWindow(toplevel_window);
118     event.format = 32;
119     XSendEvent(display, XtWindow(toplevel_window), 0, 0, (XEvent*)&event);
120     XFlush(display);
121 }