You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spOSMroute/main/wnd_routing.c

39 lines
1.3 KiB

/* $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);
};