Freeciv-3.3
Loading...
Searching...
No Matches
mpgui_qt_worker.cpp
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18// Qt
19#include <QApplication>
20#include <QHBoxLayout>
21#include <QHeaderView>
22#include <QLabel>
23#include <QMainWindow>
24#include <QPushButton>
25#include <QTableWidget>
26#include <QVBoxLayout>
27
28// utility
29#include "fcintl.h"
30#include "log.h"
31#include "registry.h"
32
33// modinst
34#include "download.h"
35#include "mpgui_qt.h"
36
37#include "mpgui_qt_worker.h"
38
39/**********************************************************************/
43{
44 const char *errmsg;
46
47 url_bytes = URL.toUtf8();
50
51 if (errmsg != nullptr) {
53 } else {
54 msg_callback(_("Ready"));
55 }
56
58}
59
60/**********************************************************************/
void refresh_list_versions_thr()
Definition mpgui_qt.cpp:374
void download(QString URL_in, class mpgui *gui_in, struct fcmp_params *fcmp_in, dl_msg_callback msg_callback_in, dl_pb_callback pb_callback_in)
dl_msg_callback msg_callback
class mpgui * gui
struct fcmp_params * fcmp
dl_pb_callback pb_callback
char * incite_cost
Definition comments.c:76
const char * download_modpack(const char *URL, const struct fcmp_params *fcmp, dl_msg_callback mcb, dl_pb_callback pbcb)
Definition download.c:66
void(* dl_msg_callback)(const char *msg)
Definition download.h:30
void(* dl_pb_callback)(int downloaded, int max)
Definition download.h:31
#define _(String)
Definition fcintl.h:67