parent
5e5ef1b898
commit
f6afe7f426
@ -0,0 +1,38 @@
|
||||
/* $Id: wnd_routing.c,v 1.2 2013/06/18 22:26:16 steffen Exp $ */
|
||||
/***************************************************************************
|
||||
* wnd_routing.c
|
||||
*
|
||||
* Created on: 18.06.2013
|
||||
* Copyright (C) 2011 Steffen Pohle
|
||||
* steffen@gulpe.de
|
||||
****************************************************************************/
|
||||
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* main.c is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "osmroute.h"
|
||||
#include "draw.h"
|
||||
#include "gui.h"
|
||||
#include "system.h"
|
||||
|
||||
static GUIWindow wrouting = {0};
|
||||
|
||||
void wnd_routing_show () {
|
||||
if (wrouting.screen == NULL) gui_window_new (&wrouting, 220, 260, _("Routing.."));
|
||||
wrouting.screen_changed = 1;
|
||||
wrouting.style = WGUI_S_VCENTER | WGUI_S_HCENTER;
|
||||
|
||||
gui_show (&wrouting);
|
||||
};
|
||||
Loading…
Reference in new issue