440a3f485f3df15c65daa16e4ce50e6f9e3e7f02
[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
27 #include "window.h"
28 #include "main.h"
29
30 #include <ucx/buffer.h>
31 #include <ucx/utils.h>
32
33 static XtAppContext app;
34 static Display *display;
35
36 static String fallback[] = {
37         "*renderTable: rt",
38         "*rt*fontType: FONT_IS_XFT",
39         "*rt*fontName: Sans",
40         "*rt*fontSize: 9",
41         
42         "*pbbutton.shadowThickness: 1",
43         "*pbbutton.highlightThickness: 1",
44     
45         "*XmText.baseTranslations: #override\\n" \
46                                 "Ctrl~Alt~Meta<KeyPress>v: paste-clipboard()\\n" \
47                                 "Ctrl~Alt~Meta<KeyPress>c: copy-clipboard()\\n" \
48                                 "Ctrl~Alt~Meta<KeyPress>x: cut-clipboard()\\n" \
49                                 "Ctrl~Alt~Meta<KeyPress>u: delete-to-start-of-line()\\n",
50         "*XmTextField.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         NULL
56 };
57
58 int main(int argc, char** argv) { 
59     // disable stdout buffering, because the netbeans's internal terminal
60     // has a bug on freebsd and doesn't flush the output after a newline
61     setvbuf(stdout, NULL, _IONBF, 0);
62     
63     XtToolkitInitialize();
64     XtSetLanguageProc(NULL, NULL, NULL);
65     app = XtCreateApplicationContext();
66     XtAppSetFallbackResources(app, fallback);
67     
68     display =  XtOpenDisplay(app, NULL, APP_NAME, APP_CLASS, NULL, 0, &argc, argv);
69     
70     MainWindow *window = WindowCreate(display);
71     
72     WindowShow(window);
73     XtAppMainLoop(app);
74     
75     return 0;
76 }
77
78 XtAppContext* GetAppContext(void) {
79     return &app;
80 }
81
82 void ApplicationExit(void) {
83     XtAppSetExitFlag(app);
84 }