summaryrefslogtreecommitdiff
path: root/navit/gui/win32/gui_win32.c
blob: 63edd73dff2150dd5f0fa4f9402ab50e5a5ca54f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
#include <stdlib.h>
#include <process.h>
#include <windows.h>
#include <glib.h>
#include "config.h"
#include "plugin.h"
#include "gui.h"
#include "graphics_win32.h"
#include "point.h"
#include "menu.h"
#include "item.h"
#include "attr.h"
#include "callback.h"
#include <commctrl.h>
#include "debug.h"
#include "util.h"
#include "navit.h"
#include "navit_nls.h"
#ifdef __CEGCC__
#include <sipapi.h>
#include <aygshell.h>
#include "ceglue.h"

static int ce_backlight = 1;
static int ce_fullscreen;
#endif

#ifdef HAVE_GLIB
//static GHashTable *popup_callback_hash = NULL;
static GArray *popup_menu_array;
#endif

const TCHAR g_szClassName[] = TEXT("navit_gui_class");


static UINT_PTR menu_id = 0;

#if 0
static gboolean message_pump( gpointer data ) {
    MSG messages;

    Sleep( 1 );

    if (GetMessage (&messages, NULL, 0, 0)) {
        TranslateMessage(&messages);
        DispatchMessage(&messages);
    } else {
        exit( 0 );
    }
    return TRUE;
}

static BOOL CALLBACK EnumChildProc(HWND hwndChild, LPARAM lParam) {
    LPRECT rcParent;
    int idChild;

    idChild = GetWindowLong(hwndChild, GWL_ID);

    if ( idChild == ID_CHILD_GFX ) {
        rcParent = (LPRECT) lParam;

        MoveWindow( hwndChild,  0, 0, rcParent->right, rcParent->bottom, TRUE );
        PostMessage( hwndChild, WM_USER+1, 0, 0 );
    }

    return TRUE;
}
#endif

#ifndef GET_WHEEL_DELTA_WPARAM
#define GET_WHEEL_DELTA_WPARAM(wParam)  ((short)HIWORD(wParam))
#endif

static void CreateToolBar(HWND hwnd) {
    // Create Toolbar
    HWND hTool;
    TBBUTTON tbb[8];
    TBADDBITMAP tbab;
#if 0 /* def _WIN32_WCE */
    /* Have to initialize common controls under CE */
    INITCOMMONCONTROLSEX iccex;
    iccex.dwSize = sizeof (INITCOMMONCONTROLSEX);
    iccex.dwICC = ICC_BAR_CLASSES;
    InitCommonControlsEx (&iccex);
#else
    InitCommonControls();
#endif

    hTool = CreateWindowEx(0, TOOLBARCLASSNAME, NULL, WS_CHILD | WS_VISIBLE, 0, 0, 0, 0,
                           hwnd, (HMENU)ID_CHILD_TOOLBAR, GetModuleHandle(NULL), NULL);

    if(hTool == NULL)
        MessageBox(hwnd, TEXT("Could not create tool bar."), TEXT("Error"), MB_OK | MB_ICONERROR);

    SendMessage(hTool, TB_BUTTONSTRUCTSIZE, (WPARAM)sizeof(TBBUTTON), 0);

    tbab.hInst = GetModuleHandle(NULL);
    tbab.nID = IDB_NAVITTOOLBAR;
    int iImageOffset = SendMessage(hTool, TB_ADDBITMAP, 10, (LPARAM) &tbab);

    int iStr;

    ZeroMemory(tbb, sizeof(tbb));

    tbb[0].iBitmap = iImageOffset;
    tbb[0].fsState = TBSTATE_ENABLED;
    tbb[0].fsStyle = TBSTYLE_BUTTON;
    tbb[0].idCommand = ID_DISPLAY_ZOOMIN;
    iStr = SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"ZoomIn" );
    tbb[0].iString = iStr;

    tbb[1].iBitmap = iImageOffset+1;
    tbb[1].fsState = TBSTATE_ENABLED;
    tbb[1].fsStyle = TBSTYLE_BUTTON;
    tbb[1].idCommand = ID_DISPLAY_ZOOMOUT;
    iStr = SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"ZoomOut" );
    tbb[1].iString = iStr;

    tbb[2].iBitmap = iImageOffset+4;
    tbb[2].fsState = TBSTATE_ENABLED;
    tbb[2].fsStyle = TBSTYLE_BUTTON;
    tbb[2].idCommand = ID_DISPLAY_REFRESH;
    iStr = SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"Refresh" );
    tbb[2].iString = iStr;

    tbb[3].iBitmap = iImageOffset+2;
    tbb[3].fsState = TBSTATE_ENABLED;
    tbb[3].fsStyle = TBSTYLE_BUTTON;
    tbb[3].idCommand = ID_DISPLAY_ZOOMIN;
    iStr = SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"Cursor" );
    tbb[3].iString = iStr;

    tbb[4].iBitmap = iImageOffset+5;
    tbb[4].fsState = TBSTATE_ENABLED;
    tbb[4].fsStyle = TBSTYLE_BUTTON;
    tbb[4].idCommand = ID_DISPLAY_ORIENT;
    iStr = SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"Orientation" );
    tbb[4].iString = iStr;

    tbb[5].iBitmap = iImageOffset+8;
    tbb[5].fsState = TBSTATE_ENABLED;
    tbb[5].fsStyle = TBSTYLE_BUTTON;
    tbb[5].idCommand = ID_DISPLAY_ZOOMIN;
    iStr= SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"Destination" );
    tbb[5].iString = iStr;

    tbb[6].iBitmap = iImageOffset+3;
    tbb[6].fsState = TBSTATE_ENABLED;
    tbb[6].fsStyle = TBSTYLE_BUTTON;
    tbb[6].idCommand = ID_DISPLAY_ZOOMIN;
    iStr= SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"Roadbook" );
    tbb[6].iString = iStr;

    tbb[7].iBitmap = iImageOffset+9;
    tbb[7].fsState = TBSTATE_ENABLED;
    tbb[7].fsStyle = TBSTYLE_BUTTON;
    tbb[7].idCommand = ID_FILE_EXIT;
    iStr= SendMessage(hTool, TB_ADDSTRINGW, 0, (LPARAM)  L"_Quit" );
    tbb[7].iString = iStr;

    SendMessage(hTool, TB_ADDBUTTONS, sizeof(tbb)/sizeof(TBBUTTON), (LPARAM)&tbb);
}

static void window_layout( HWND hwnd ) {
#ifndef HAVE_API_WIN32_CE
    RECT rcClient;
    RECT rcTool;
    int iToolHeight;

    HWND hChild = GetDlgItem(hwnd, ID_CHILD_TOOLBAR);
    SendMessage(hChild, TB_AUTOSIZE, 0, 0);

    GetWindowRect(hChild, &rcTool);
    iToolHeight = rcTool.bottom - rcTool.top;

    GetClientRect(hwnd, &rcClient);
    //printf( "BEFORE resize gui to: %d %d %d %d \n", rcClient.left, rcClient.right, rcClient.top, rcClient.bottom );

    rcClient.top += iToolHeight;

    dbg(lvl_debug, "resize gui to: %d %d %d %d ", rcClient.left, rcClient.right, rcClient.top, rcClient.bottom );


    hChild = GetDlgItem(hwnd, ID_CHILD_GFX);
    if ( hChild ) {
        MoveWindow( hChild,  rcClient.left, rcClient.top, rcClient.right- rcClient.left, rcClient.bottom - rcClient.top, TRUE );
        PostMessage( hChild, WM_USER+1, 0, 0 );
    }
#endif
}
#ifdef __CEGCC__
static void toggle_fullscreen(HWND mWnd) {
    if (SHFullScreenPtr) {
        if (!ce_fullscreen) {
            (*SHFullScreenPtr)(mWnd, SHFS_HIDETASKBAR |
                               SHFS_HIDESTARTICON | SHFS_HIDESIPBUTTON);
        } else {
            (*SHFullScreenPtr)(mWnd, SHFS_HIDESIPBUTTON);
        }
        ce_fullscreen = !ce_fullscreen;
    }
}

static void toggle_backlight(void) {
    if (ce_backlight)
        if (CeEnableBacklight(FALSE))
            ce_backlight = 0;
        else if (CeEnableBacklight(TRUE))
            ce_backlight = 1;
}
#endif

static LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
    RECT rcClient;

//	printf( "PARENT %d %d %d \n", Message, wParam, lParam );

    switch(Message) {
    case WM_CREATE: {
        HMENU hMenu, hSubMenu;

        CreateToolBar( hwnd );

        hMenu = CreateMenu();
        // g_this_->hwnd = hwnd;

        hSubMenu = CreatePopupMenu();

        AppendMenuW(hSubMenu, MF_STRING, ID_DISPLAY_ZOOMIN, L"ZoomIn" );
        AppendMenuW(hSubMenu, MF_STRING, ID_DISPLAY_ZOOMOUT, L"ZoomOut" );
        AppendMenuW(hSubMenu, MF_STRING, ID_DISPLAY_REFRESH, L"Refresh" );
        AppendMenuW(hSubMenu, MF_SEPARATOR, 0, NULL );
        AppendMenuW(hSubMenu, MF_STRING, ID_FILE_EXIT, L"_Quit" );

        AppendMenuW(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, L"Display" );
        hSubMenu = CreatePopupMenu();
        AppendMenu(hSubMenu, MF_STRING, ID_STUFF_GO, TEXT("&Go"));
        AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, TEXT("&Stuff"));

#ifndef HAVE_API_WIN32_CE
        SetMenu(hwnd, hMenu);
#endif

        window_layout( hwnd );

    }
    break;
    case WM_COMMAND: {
        printf( "WM_COMMAND %d\n", LOWORD(wParam) );
        struct gui_priv* gui = (struct gui_priv*)GetWindowLongPtr( hwnd, DWLP_USER );


        switch(LOWORD(wParam)) {
        case ID_DISPLAY_ZOOMIN:
            navit_zoom_in(gui->nav, 2, NULL);
            return 0;
            break;
        case ID_DISPLAY_ZOOMOUT:
            navit_zoom_out(gui->nav, 2, NULL);
            return 0;
            break;
        case ID_DISPLAY_REFRESH:
            navit_draw(gui->nav);
            return 0;
            break;
        case ID_DISPLAY_CURSOR: {
            struct attr attr;
            attr.type=attr_cursor;
            // TODO attr.u.num=gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(w));
            if(!navit_set_attr(gui->nav, &attr)) {
                dbg(lvl_error, "Failed to set attr_cursor");
            }
            return 0;
        }
        break;
        case ID_DISPLAY_ORIENT: {
            struct attr attr;

            attr.type=attr_orientation;
            // attr.u.num=gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(w));
            attr.u.num = 0; // TODO
            if(!navit_set_attr(gui->nav, &attr)) {
                dbg(lvl_error, "Failed to set attr_orientation");
            }
            return 0;
        }

        case ID_FILE_EXIT:
            PostMessage(hwnd, WM_CLOSE, 0, 0);
            return 0;
            break;
        }
#if HAVE_GLIB
        if ( popup_menu_array ) {
            struct menu_priv* priv = (struct menu_priv*)g_array_index( popup_menu_array, gint, LOWORD(wParam) - POPUP_MENU_OFFSET );

            if ( priv ) {
                struct callback* cb = priv->cb;
                if ( priv->cb ) {
                    callback_call_0( priv->cb );
                    return 0;
                }
            }
        }
#endif
    }
    break;
    case WM_USER+ 1:
        GetClientRect(hwnd, &rcClient);
        printf( "resize gui to: %d %d \n", rcClient.right, rcClient.bottom );

        window_layout( hwnd );
        //EnumChildWindows(hwnd, EnumChildProc, (LPARAM) &rcClient);
        return 0;
        break;
    case WM_CLOSE:
        DestroyWindow(hwnd);
        break;
    case WM_SIZE:
        window_layout( hwnd );
        return 0;
        break;
    case WM_DESTROY:
        PostQuitMessage(0);
        break;


    case WM_MOUSEWHEEL: {
        struct gui_priv* gui = (struct gui_priv*)GetWindowLongPtr( hwnd, DWLP_USER );

        short delta = GET_WHEEL_DELTA_WPARAM( wParam );
        if ( delta > 0 ) {
            navit_zoom_in(gui->nav, 2, NULL);
        } else {
            navit_zoom_out(gui->nav, 2, NULL);
        }
    }
    break;
#ifdef HAVE_API_WIN32_CE
    case WM_KEYDOWN: {
        struct point p;
        int w,h;
        struct gui_priv* gui = (struct gui_priv*)GetWindowLongPtr( hwnd, DWLP_USER );
        transform_get_size(navit_get_trans(gui->nav), &w, &h);

        if (wParam == VK_LEFT || wParam == '4') {
            p.x=0;
            p.y=h/2;
            navit_set_center_screen(gui->nav, &p, 1);
        } else if (wParam == VK_RIGHT || wParam == '6') {
            p.x=w;
            p.y=h/2;
            navit_set_center_screen(gui->nav, &p, 1);
        } else if (wParam == VK_UP || wParam == '2') {
            p.x=w/2;
            p.y=0;
            navit_set_center_screen(gui->nav, &p, 1);
        } else if (wParam == VK_DOWN || wParam == '8') {
            p.x=w/2;
            p.y=h;
            navit_set_center_screen(gui->nav, &p, 1);
        } else if (wParam == '1') {
            navit_zoom_in(gui->nav, 2, NULL);
        } else if (wParam == '3') {
            navit_zoom_out(gui->nav, 2, NULL);
        } else if (wParam == '7') {
#if 0
            toggle_backlight();
#endif
        } else if (wParam == '9') {
#if 0
            toggle_fullscreen(hwnd);
#endif
        }
    }
    break;
#endif
    default:
        return DefWindowProc(hwnd, Message, wParam, lParam);
    }
    return 0;
}

static HANDLE CreateWin32Window( void ) {
#ifdef HAVE_API_WIN32_CE
    WNDCLASS wc;
#else
    WNDCLASSEX wc;
    wc.cbSize		 = sizeof(WNDCLASSEX);
    wc.hIconSm		 = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_NAVIT));
#endif
    HWND hwnd;
//	MSG Msg;

    wc.style		 = 0;
    wc.lpfnWndProc	 = WndProc;
    wc.cbClsExtra	 = 0;
    wc.cbWndExtra	 = 32;
    wc.hInstance	 = NULL;
    wc.hCursor		 = LoadCursor(NULL, IDC_ARROW);
    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
    wc.lpszMenuName  = NULL;
    wc.lpszClassName = g_szClassName;
    wc.hIcon		 = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_NAVIT));

#ifdef HAVE_API_WIN32_CE
    if(!RegisterClass(&wc))
#else
    if(!RegisterClassEx(&wc))
#endif

    {
        MessageBox(NULL, TEXT("Window Registration Failed!"), TEXT("Error!"), MB_ICONEXCLAMATION | MB_OK);
        return 0;
    }

    hwnd = CreateWindowEx(
               WS_EX_CLIENTEDGE,
               g_szClassName,
               TEXT( "Navit" ),
#ifdef HAVE_API_WIN32_CE
               WS_SYSMENU | WS_CLIPCHILDREN,
               CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
#else

               WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN,
               CW_USEDEFAULT, CW_USEDEFAULT, 800, 600,
#endif
               NULL, NULL, NULL, NULL);

    if(hwnd == NULL) {
        MessageBox(NULL, TEXT("Window Creation Failed!"), TEXT("Error!"), MB_ICONEXCLAMATION | MB_OK);
        return 0;
    }

    ShowWindow(hwnd, TRUE);
    UpdateWindow(hwnd);

#if 0
    g_idle_add (message_pump, NULL);
#endif

    return hwnd;
}


static int win32_gui_set_graphics(struct gui_priv *this_, struct graphics *gra) {
    HANDLE* wndHandle_ptr = graphics_get_data(gra, "wnd_parent_handle_ptr");
    *wndHandle_ptr = this_->hwnd;
    graphics_get_data(gra, "START_CLIENT");
    return 0;
}


static void win32_gui_add_bookmark_do(struct gui_priv *gui) {
//	navit_add_bookmark(gui->nav, &gui->dialog_coord, gtk_entry_get_text(GTK_ENTRY(gui->dialog_entry)));
//	gtk_widget_destroy(gui->dialog_win);
}

static int win32_gui_add_bookmark(struct gui_priv *gui, struct pcoord *c, char *description) {
    return 1;
}


static struct menu_methods menu_methods;


static struct menu_priv *add_menu(	struct menu_priv *menu,
                                    struct menu_methods *meth,
                                    char *name,
                                    enum menu_type type,
                                    struct callback *cb) {
    struct menu_priv* ret = NULL;

    ret = g_new0(struct menu_priv, 1);

    *ret = *menu;
    *meth = menu_methods;

    TCHAR *menuname = newSysString(name);

    if ( type == menu_type_submenu ) {
        HMENU hSubMenu = NULL;
        hSubMenu = CreatePopupMenu();
        AppendMenu(menu->hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, menuname );
        ret->hMenu = hSubMenu;
    } else {
        AppendMenu( menu->hMenu, MF_STRING, menu_id, name );
    }

    // g_hash_table_insert( popup_callback_hash, GINT_TO_POINTER( menu_id ),  (gpointer)cb );
#if HAVE_GLIB
    g_array_append_val( popup_menu_array, ret );
#endif

    ret->cb = cb;

    menu_id++;

    return ret;

}

static void set_toggle(struct menu_priv *menu, int active) {
    // gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(menu->action), active);
}

static int get_toggle(struct menu_priv *menu) {
    // return gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(menu->action));
    return 0;
}

static struct menu_methods menu_methods = {
    add_menu,
    set_toggle,
    get_toggle,
};

static void popup_activate(struct menu_priv *menu) {
    POINT pnt;
    GetCursorPos( &pnt );

    if (menu->hMenu) {
        TrackPopupMenu( menu->hMenu, 0, pnt.x, pnt.y, 0, menu->wnd_handle, NULL );
        DestroyMenu( menu->hMenu );
    }
}


static void popup_deactivate( struct menu_priv *menu ) {
    DestroyMenu( menu->hMenu );
}

static struct menu_priv* win32_gui_popup_new(struct gui_priv *this_, struct menu_methods *meth) {
    struct menu_priv* ret = NULL;

    ret = g_new0(struct menu_priv, 1);
    *meth = menu_methods;

    menu_id = POPUP_MENU_OFFSET;

#if HAVE_GLIB
    if ( popup_menu_array ) {
        g_array_free (popup_menu_array, TRUE);
        popup_menu_array = NULL;
    }

    popup_menu_array = g_array_new (FALSE, FALSE, sizeof (gint));
#endif

    ret->cb = NULL;
    ret->hMenu = CreatePopupMenu();
    ret->wnd_handle = this_->hwnd;
    meth->popup=popup_activate;

    printf( "create popup menu %d \n", ret->hMenu );

    return ret;
}

struct gui_methods win32_gui_methods = {
    NULL, // win32_gui_menubar_new,
    win32_gui_popup_new,
    win32_gui_set_graphics,
    NULL,
    NULL, // win32_gui_datawindow_new,
    win32_gui_add_bookmark,
};



static struct gui_priv *win32_gui_new( struct navit *nav, struct gui_methods *meth, struct attr **attrs) {
    struct gui_priv *this_;
#ifdef HAVE_API_WIN32_CE
    /* Do not run multiple instances under CE */
    HWND prev;
    prev = FindWindow(g_szClassName, NULL);
    if (prev) {
        ShowWindow(prev, SW_RESTORE);
        SetForegroundWindow(prev);
        InvalidateRect (prev, NULL, FALSE);
        exit(0);
    }
    InitCeGlue();
#endif

    *meth=win32_gui_methods;

    this_=g_new0(struct gui_priv, 1);
    this_->nav=nav;

    this_->hwnd = CreateWin32Window();
    SetWindowLongPtr( this_->hwnd, DWLP_USER, (LONG_PTR)this_ );

    return this_;
}

void plugin_init(void) {
    plugin_register_category_gui("win32", win32_gui_new);
}