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
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
crate::ix!();

//-------------------------------------------[.cpp/bitcoin/src/qt/bitcoin.h]

/**
  | Main Bitcoin application object
  |
  */
#[Q_OBJECT]
pub struct BitcoinApplication {
    base: QApplication,
    executor:            Option<InitExecutor>,
    options_model:       *mut OptionsModel,
    client_model:        *mut ClientModel,
    window:              *mut BitcoinGUI,
    poll_shutdown_timer: *mut QTimer,

    #[cfg(ENABLE_WALLET)]
    payment_server:      *mut PaymentServer, // default = { nullptr }

    #[cfg(ENABLE_WALLET)]
    wallet_controller:   *mut WalletController, // default = { nullptr }

    return_value:        i32,
    platform_style:      *const PlatformStyle,
    shutdown_window:     Box<QWidget>,
    splash:              *mut SplashScreen, // default = nullptr
    node:                Box<dyn NodeInterface>,
}

impl BitcoinApplication {

    /**
      | Get process return value
      |
      */
    pub fn get_return_value(&self) -> i32 {
        
        todo!();
        /*
            return returnValue;
        */
    }

    pub fn node(&self) -> Rc<RefCell<dyn NodeInterface>> {
        
        todo!();
        /*
            assert(m_node); return *m_node;
        */
    }

    #[Q_SIGNAL]
    pub fn requested_initialize(&mut self)  {
        
        todo!();
        /*
        
        */
    }
    
    #[Q_SIGNAL]
    pub fn requested_shutdown(&mut self)  {
        
        todo!();
        /*
        
        */
    }
    
    #[Q_SIGNAL]
    pub fn splash_finished(&mut self)  {
        
        todo!();
        /*
        
        */
    }
    
    #[Q_SIGNAL]
    pub fn window_shown(&mut self, window: *mut BitcoinGUI)  {
        
        todo!();
        /*
        
        */
    }
}

//-------------------------------------------[.cpp/bitcoin/src/qt/bitcoin.cpp]

#[cfg(QT_STATICPLUGIN)]
#[cfg(QT_QPA_PLATFORM_XCB)]     q_import_plugin!{ QXcbIntegrationPlugin }

#[cfg(QT_STATICPLUGIN)]
#[cfg(QT_QPA_PLATFORM_WINDOWS)] q_import_plugin!{ QWindowsIntegrationPlugin }

#[cfg(QT_STATICPLUGIN)]
#[cfg(QT_QPA_PLATFORM_WINDOWS)] q_import_plugin!{ QWindowsVistaStylePlugin }

#[cfg(QT_STATICPLUGIN)]
#[cfg(QT_QPA_PLATFORM_COCOA)] q_import_plugin!{ QCocoaIntegrationPlugin }

#[cfg(QT_STATICPLUGIN)]
#[cfg(QT_QPA_PLATFORM_COCOA)] q_import_plugin!{ QMacStylePlugin }

/**
  | Declare meta types used for
  | QMetaObject::invokeMethod
  |
  */
q_declare_metatype!{ SynchronizationState }
q_declare_metatype!{ *mut bool }

pub fn register_meta_types()  {
    
    todo!();
        /*
            // Register meta types used for QMetaObject::invokeMethod and QtQueuedConnection
        qRegisterMetaType<bool*>();
        qRegisterMetaType<SynchronizationState>();
      #ifdef ENABLE_WALLET
        qRegisterMetaType<WalletModel*>();
      #endif
        // Register typedefs (see https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType)
        // IMPORTANT: if CAmount is no longer a typedef use the normal variant above (see https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType-1)
        qRegisterMetaType<CAmount>("CAmount");
        qRegisterMetaType<size_t>("size_t");

        qRegisterMetaType<std::function<c_void()>>("std::function<c_void()>");
        qRegisterMetaType<QMessageBox::Icon>("QMessageBox::Icon");
        qRegisterMetaType<typename interfaces::BlockAndHeaderTipInfo>("typename interfaces::BlockAndHeaderTipInfo");
        */
}

pub fn get_lang_territory() -> String {
    
    todo!();
        /*
            QSettings settings;
        // Get desired locale (e.g. "de_DE")
        // 1) System default language
        QString lang_territory = QLocale::system().name();
        // 2) Language from QSettings
        QString lang_territory_qsettings = settings.value("language", "").toString();
        if(!lang_territory_qsettings.isEmpty())
            lang_territory = lang_territory_qsettings;
        // 3) -lang command line argument
        lang_territory = QString::fromStdString(gArgs.GetArg("-lang", lang_territory.toStdString()));
        return lang_territory;
        */
}

/**
  | Set up translations
  |
  */
pub fn init_translations(
        qt_translator_base: &mut QTranslator,
        qt_translator:      &mut QTranslator,
        translator_base:    &mut QTranslator,
        translator:         &mut QTranslator)  {
    
    todo!();
        /*
            // Remove old translators
        QApplication::removeTranslator(&qtTranslatorBase);
        QApplication::removeTranslator(&qtTranslator);
        QApplication::removeTranslator(&translatorBase);
        QApplication::removeTranslator(&translator);

        // Get desired locale (e.g. "de_DE")
        // 1) System default language
        QString lang_territory = GetLangTerritory();

        // Convert to "de" only by truncating "_DE"
        QString lang = lang_territory;
        lang.truncate(lang_territory.lastIndexOf('_'));

        // Load language files for configured locale:
        // - First load the translator for the base language, without territory
        // - Then load the more specific locale translator

        // Load e.g. qt_de.qm
        if (qtTranslatorBase.load("qt_" + lang, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
            QApplication::installTranslator(&qtTranslatorBase);

        // Load e.g. qt_de_DE.qm
        if (qtTranslator.load("qt_" + lang_territory, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
            QApplication::installTranslator(&qtTranslator);

        // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in bitcoin.qrc)
        if (translatorBase.load(lang, ":/translations/"))
            QApplication::installTranslator(&translatorBase);

        // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in bitcoin.qrc)
        if (translator.load(lang_territory, ":/translations/"))
            QApplication::installTranslator(&translator);
        */
}

pub fn init_settings() -> bool {
    
    todo!();
        /*
            if (!gArgs.GetSettingsPath()) {
            return true; // Do nothing if settings file disabled.
        }

        std::vector<std::string> errors;
        if (!gArgs.ReadSettingsFile(&errors)) {
            std::string error = QT_TRANSLATE_NOOP("bitcoin-core", "Settings file could not be read");
            std::string error_translated = QCoreApplication::translate("bitcoin-core", error.c_str()).toStdString();
            InitError(Untranslated(strprintf("%s:\n%s\n", error, MakeUnorderedList(errors))));

            QMessageBox messagebox(QMessageBox::Critical, PACKAGE_NAME, QString::fromStdString(strprintf("%s.", error_translated)), QMessageBox::Reset | QMessageBox::Abort);
            /*: Explanatory text shown on startup when the settings file cannot be read.
                Prompts user to make a choice between resetting or aborting. */
            messagebox.setInformativeText(QObject::tr("Do you want to reset settings to default values, or to abort without making changes?"));
            messagebox.setDetailedText(QString::fromStdString(MakeUnorderedList(errors)));
            messagebox.setTextFormat(QtPlainText);
            messagebox.setDefaultButton(QMessageBox::Reset);
            switch (messagebox.exec()) {
            case QMessageBox::Reset:
                break;
            case QMessageBox::Abort:
                return false;
            default:
                assert(false);
            }
        }

        errors.clear();
        if (!gArgs.WriteSettingsFile(&errors)) {
            std::string error = QT_TRANSLATE_NOOP("bitcoin-core", "Settings file could not be written");
            std::string error_translated = QCoreApplication::translate("bitcoin-core", error.c_str()).toStdString();
            InitError(Untranslated(strprintf("%s:\n%s\n", error, MakeUnorderedList(errors))));

            QMessageBox messagebox(QMessageBox::Critical, PACKAGE_NAME, QString::fromStdString(strprintf("%s.", error_translated)), QMessageBox::Ok);
            /*: Explanatory text shown on startup when the settings file could not be written.
                Prompts user to check that we have the ability to write to the file.
                Explains that the user has the option of running without a settings file.*/
            messagebox.setInformativeText(QObject::tr("A fatal error occurred. Check that settings file is writable, or try running with -nosettings."));
            messagebox.setDetailedText(QString::fromStdString(MakeUnorderedList(errors)));
            messagebox.setTextFormat(QtPlainText);
            messagebox.setDefaultButton(QMessageBox::Ok);
            messagebox.exec();
            return false;
        }
        return true;
        */
}

/**
  | qDebug() message handler --> debug.log
  |
  */
pub fn debug_message_handler(
        ty:      QtMsgType,
        context: &QMessageLogContext,
        msg:     &String)  {
    
    todo!();
        /*
            Q_UNUSED(context);
        if (type == QtDebugMsg) {
            LogPrint(BCLog::QT, "GUI: %s\n", msg.toStdString());
        } else {
            LogPrintf("GUI: %s\n", msg.toStdString());
        }
        */
}

lazy_static!{
    /*
    static int qt_argc = 1;
    */
}

pub const QT_ARGV: &'static str = "bitcoin-qt";

impl Drop for BitcoinApplication {
    fn drop(&mut self) {
        todo!();
        /*
            m_executor.reset();

        delete window;
        window = nullptr;
        delete platformStyle;
        platformStyle = nullptr;
        */
    }
}

impl BitcoinApplication {

    pub fn new() -> Self {
    
        todo!();
        /*


            :
        QApplication(qt_argc, const_cast<char **>(&qt_argv)),
        optionsModel(nullptr),
        clientModel(nullptr),
        window(nullptr),
        pollShutdownTimer(nullptr),
        returnValue(0),
        platformStyle(nullptr)
        // Qt runs setlocale(LC_ALL, "") on initialization.
        RegisterMetaTypes();
        setQuitOnLastWindowClosed(false);
        */
    }
    
    /**
      | Setup platform style
      |
      */
    pub fn setup_platform_style(&mut self)  {
        
        todo!();
        /*
            // UI per-platform customization
        // This must be done inside the BitcoinApplication constructor, or after it, because
        // PlatformStyle::instantiate requires a QApplication
        std::string platformName;
        platformName = gArgs.GetArg("-uiplatform", BitcoinGUI::DEFAULT_UIPLATFORM);
        platformStyle = PlatformStyle::instantiate(QString::fromStdString(platformName));
        if (!platformStyle) // Fall back to "other" if specified name not found
            platformStyle = PlatformStyle::instantiate("other");
        assert(platformStyle);
        */
    }

    /**
      | Create payment server
      |
      */
    #[cfg(ENABLE_WALLET)]
    pub fn create_payment_server(&mut self)  {
        
        todo!();
        /*
            paymentServer = new PaymentServer(this);
        */
    }
    
    /**
      | Create options model
      |
      */
    pub fn create_options_model(&mut self, reset_settings: bool)  {
        
        todo!();
        /*
            optionsModel = new OptionsModel(this, resetSettings);
        */
    }
    
    /**
      | Create main window
      |
      */
    pub fn create_window(&mut self, network_style: *const NetworkStyle)  {
        
        todo!();
        /*
            window = new BitcoinGUI(node(), platformStyle, networkStyle, nullptr);
        connect(window, &BitcoinGUI::quitRequested, this, &BitcoinApplication::requestShutdown);

        pollShutdownTimer = new QTimer(window);
        connect(pollShutdownTimer, &QTimer::timeout, window, &BitcoinGUI::detectShutdown);
        */
    }
    
    /**
      | Create splash screen
      |
      */
    pub fn create_splash_screen(&mut self, network_style: *const NetworkStyle)  {
        
        todo!();
        /*
            assert(!m_splash);
        m_splash = new SplashScreen(networkStyle);
        // We don't hold a direct pointer to the splash screen after creation, but the splash
        // screen will take care of deleting itself when finish() happens.
        m_splash->show();
        connect(this, &BitcoinApplication::requestedInitialize, m_splash, &SplashScreen::handleLoadWallet);
        connect(this, &BitcoinApplication::splashFinished, m_splash, &SplashScreen::finish);
        connect(this, &BitcoinApplication::requestedShutdown, m_splash, &QWidget::close);
        */
    }
    
    /**
      | Create or spawn node
      |
      */
    pub fn create_node(&mut self, init: Box<dyn Init>)  {
        
        todo!();
        /*
            assert(!m_node);
        m_node = init.makeNode();
        if (optionsModel) optionsModel->setNode(*m_node);
        if (m_splash) m_splash->setNode(*m_node);
        */
    }
    
    /**
      | Basic initialization, before starting
      | initialization/shutdown thread.
      | Return true on success.
      |
      */
    pub fn base_initialize(&mut self) -> bool {
        
        todo!();
        /*
            return node().baseInitialize();
        */
    }
    
    pub fn start_thread(&mut self)  {
        
        todo!();
        /*
            assert(!m_executor);
        m_executor.emplace(node());

        /*  communication to and from thread */
        connect(&m_executor.value(), &InitExecutor::initializeResult, this, &BitcoinApplication::initializeResult);
        connect(&m_executor.value(), &InitExecutor::shutdownResult, this, &QCoreApplication::quit);
        connect(&m_executor.value(), &InitExecutor::runawayException, this, &BitcoinApplication::handleRunawayException);
        connect(this, &BitcoinApplication::requestedInitialize, &m_executor.value(), &InitExecutor::initialize);
        connect(this, &BitcoinApplication::requestedShutdown, &m_executor.value(), &InitExecutor::shutdown);
        */
    }
    
    /**
      | parameter interaction/setup based
      | on rules
      |
      */
    pub fn parameter_setup(&mut self)  {
        
        todo!();
        /*
            // Default printtoconsole to false for the GUI. GUI programs should not
        // print to the console unnecessarily.
        gArgs.SoftSetBoolArg("-printtoconsole", false);

        InitLogging(gArgs);
        InitParameterInteraction(gArgs);
        */
    }
    
    /**
      | Initialize prune setting
      |
      */
    pub fn init_prune_setting(&mut self, prune_mib: i64)  {
        
        todo!();
        /*
            optionsModel->SetPruneTargetGB(PruneMiBtoGB(prune_MiB), true);
        */
    }
    
    /**
      | Request core initialization
      |
      */
    pub fn request_initialize(&mut self)  {
        
        todo!();
        /*
            qDebug() << __func__ << ": Requesting initialize";
        startThread();
        Q_EMIT requestedInitialize();
        */
    }
    
    /**
      | Request core shutdown
      |
      */
    #[Q_SLOT]
    pub fn request_shutdown(&mut self)  {
        
        todo!();
        /*
            for (const auto w : QGuiApplication::topLevelWindows()) {
            w->hide();
        }

        // Show a simple window indicating shutdown status
        // Do this first as some of the steps may take some time below,
        // for example the RPC console may still be executing a command.
        shutdownWindow.reset(ShutdownWindow::showShutdownWindow(window));

        qDebug() << __func__ << ": Requesting shutdown";

        // Must disconnect node signals otherwise current thread can deadlock since
        // no event loop is running.
        window->unsubscribeFromCoreSignals();
        // Request node shutdown, which can interrupt long operations, like
        // rescanning a wallet.
        node().startShutdown();
        // Unsetting the client model can cause the current thread to wait for node
        // to complete an operation, like wait for a RPC execution to complete.
        window->setClientModel(nullptr);
        pollShutdownTimer->stop();

    #ifdef ENABLE_WALLET
        // Delete wallet controller here manually, instead of relying on Qt object
        // tracking (https://doc.qt.io/qt-5/objecttrees.html). This makes sure
        // walletmodel m_handle_* notification handlers are deleted before wallets
        // are unloaded, which can simplify wallet implementations. It also avoids
        // these notifications having to be handled while GUI objects are being
        // destroyed, making GUI code less fragile as well.
        delete m_wallet_controller;
        m_wallet_controller = nullptr;
    #endif // ENABLE_WALLET

        delete clientModel;
        clientModel = nullptr;

        // Request shutdown from core thread
        Q_EMIT requestedShutdown();
        */
    }
    
    #[Q_SLOT]
    pub fn initialize_result(&mut self, 
        success:  bool,
        tip_info: BlockAndHeaderTipInfo)  {
        
        todo!();
        /*
            qDebug() << __func__ << ": Initialization result: " << success;
        // Set exit result.
        returnValue = success ? EXIT_SUCCESS : EXIT_FAILURE;
        if(success)
        {
            // Log this only after AppInitMain finishes, as then logging setup is guaranteed complete
            qInfo() << "Platform customization:" << platformStyle->getName();
            clientModel = new ClientModel(node(), optionsModel);
            window->setClientModel(clientModel, &tip_info);
    #ifdef ENABLE_WALLET
            if (WalletModel::isWalletEnabled()) {
                m_wallet_controller = new WalletController(*clientModel, platformStyle, this);
                window->setWalletController(m_wallet_controller);
                if (paymentServer) {
                    paymentServer->setOptionsModel(optionsModel);
                }
            }
    #endif // ENABLE_WALLET

            // If -min option passed, start window minimized (iconified) or minimized to tray
            if (!gArgs.GetBoolArg("-min", false)) {
                window->show();
            } else if (clientModel->getOptionsModel()->getMinimizeToTray() && window->hasTrayIcon()) {
                // do nothing as the window is managed by the tray icon
            } else {
                window->showMinimized();
            }
            Q_EMIT splashFinished();
            Q_EMIT windowShown(window);

    #ifdef ENABLE_WALLET
            // Now that initialization/startup is done, process any command-line
            // bitcoin: URIs or payment requests:
            if (paymentServer) {
                connect(paymentServer, &PaymentServer::receivedPaymentRequest, window, &BitcoinGUI::handlePaymentRequest);
                connect(window, &BitcoinGUI::receivedURI, paymentServer, &PaymentServer::handleURIOrFile);
                connect(paymentServer, &PaymentServer::message, [this](const QString& title, const QString& message, unsigned int style) {
                    window->message(title, message, style);
                });
                QTimer::singleShot(100, paymentServer, &PaymentServer::uiReady);
            }
    #endif
            pollShutdownTimer->start(200);
        } else {
            Q_EMIT splashFinished(); // Make sure splash screen doesn't stick around during shutdown
            requestShutdown();
        }
        */
    }
    
    /**
      | Handle runaway exceptions. Shows a
      | message box with the problem and quits
      | the program.
      |
      */
    #[Q_SLOT]
    pub fn handle_runaway_exception(&mut self, message: &String)  {
        
        todo!();
        /*
            QMessageBox::critical(
            nullptr, tr("Runaway exception"),
            tr("A fatal error occurred. %1 can no longer continue safely and will quit.").arg(PACKAGE_NAME) +
            QLatin1String("<br><br>") + typename gui_util::MakeHtmlLink(message, PACKAGE_BUGREPORT));
        ::exit(EXIT_FAILURE);
        */
    }
    
    /**
      | A helper function that shows a message
      | box with details about a non-fatal exception.
      |
      */
    #[Q_SLOT]
    pub fn handle_non_fatal_exception(&mut self, message: &String)  {
        
        todo!();
        /*
            assert(QThread::currentThread() == thread());
        QMessageBox::warning(
            nullptr, tr("Internal error"),
            tr("An internal error occurred. %1 will attempt to continue safely. This is "
               "an unexpected bug which can be reported as described below.").arg(PACKAGE_NAME) +
            QLatin1String("<br><br>") + typename gui_util::MakeHtmlLink(message, PACKAGE_BUGREPORT));
        */
    }
    
    /**
      | Get window identifier of QMainWindow
      | (BitcoinGUI)
      |
      */
    pub fn get_main_win_id(&self) -> WId {
        
        todo!();
        /*
            if (!window)
            return 0;

        return window->winId();
        */
    }
}

pub fn setup_ui_args(argsman: &mut ArgsManager)  {
    
    todo!();
        /*
            argsman.AddArg("-choosedatadir", strprintf("Choose data directory on startup (default: %u)", DEFAULT_CHOOSE_DATADIR), ArgsManager::ALLOW_ANY, OptionsCategory::GUI);
        argsman.AddArg("-lang=<lang>", "Set language, for example \"de_DE\" (default: system locale)", ArgsManager::ALLOW_ANY, OptionsCategory::GUI);
        argsman.AddArg("-min", "Start minimized", ArgsManager::ALLOW_ANY, OptionsCategory::GUI);
        argsman.AddArg("-resetguisettings", "Reset all settings changed in the GUI", ArgsManager::ALLOW_ANY, OptionsCategory::GUI);
        argsman.AddArg("-splash", strprintf("Show splash screen on startup (default: %u)", DEFAULT_SPLASHSCREEN), ArgsManager::ALLOW_ANY, OptionsCategory::GUI);
        argsman.AddArg("-uiplatform", strprintf("Select platform to customize UI for (one of windows, macosx, other; default: %s)", BitcoinGUI::DEFAULT_UIPLATFORM), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::GUI);
        */
}

pub fn gui_main(
        argc: i32,
        argv: &[*mut u8]) -> i32 {
    
    todo!();
        /*
            #ifdef WIN32
        util::WinCmdLineArgs winArgs;
        std::tie(argc, argv) = winArgs.get();
    #endif

        std::unique_ptr<typename interfaces::Init> init = typename interfaces::MakeGuiInit(argc, argv);

        SetupEnvironment();
        util::ThreadSetInternalName("main");

        // Subscribe to global signals from core
        boost::signals2::scoped_connection handler_message_box = ::uiInterface.ThreadSafeMessageBox_connect(noui_ThreadSafeMessageBox);
        boost::signals2::scoped_connection handler_question = ::uiInterface.ThreadSafeQuestion_connect(noui_ThreadSafeQuestion);
        boost::signals2::scoped_connection handler_init_message = ::uiInterface.InitMessage_connect(noui_InitMessage);

        // Do not refer to data directory yet, this can be overridden by Intro::pickDataDirectory

        /// 1. Basic Qt initialization (not dependent on parameters or configuration)
        Q_INIT_RESOURCE(bitcoin);
        Q_INIT_RESOURCE(bitcoin_locale);

        // Generate high-dpi pixmaps
        QApplication::setAttribute(QtAA_UseHighDpiPixmaps);
        QCoreApplication::setAttribute(QtAA_EnableHighDpiScaling);

    #if defined(QT_QPA_PLATFORM_ANDROID)
        QApplication::setAttribute(QtAA_DontUseNativeMenuBar);
        QApplication::setAttribute(QtAA_DontCreateNativeWidgetSiblings);
        QApplication::setAttribute(QtAA_DontUseNativeDialogs);
    #endif

        BitcoinApplication app;
        typename gui_util::LoadFont(QStringLiteral(":/fonts/monospace"));

        /// 2. Parse command-line options. We do this after qt in order to show an error if there are problems parsing these
        // Command-line options take precedence:
        SetupServerArgs(gArgs);
        SetupUIArgs(gArgs);
        std::string error;
        if (!gArgs.ParseParameters(argc, argv, error)) {
            InitError(strprintf(Untranslated("Error parsing command line arguments: %s\n"), error));
            // Create a message box, because the gui has neither been created nor has subscribed to core signals
            QMessageBox::critical(nullptr, PACKAGE_NAME,
                // message can not be translated because translations have not been initialized
                QString::fromStdString("Error parsing command line arguments: %1.").arg(QString::fromStdString(error)));
            return EXIT_FAILURE;
        }

        // Now that the QApplication is setup and we have parsed our parameters, we can set the platform style
        app.setupPlatformStyle();

        /// 3. Application identification
        // must be set before OptionsModel is initialized or translations are loaded,
        // as it is used to locate QSettings
        QApplication::setOrganizationName(QAPP_ORG_NAME);
        QApplication::setOrganizationDomain(QAPP_ORG_DOMAIN);
        QApplication::setApplicationName(QAPP_APP_NAME_DEFAULT);

        /// 4. Initialization of translations, so that intro dialog is in user's language
        // Now that QSettings are accessible, initialize translations
        QTranslator qtTranslatorBase, qtTranslator, translatorBase, translator;
        initTranslations(qtTranslatorBase, qtTranslator, translatorBase, translator);

        // Show help message immediately after parsing command-line options (for "-lang") and setting locale,
        // but before showing splash screen.
        if (HelpRequested(gArgs) || gArgs.IsArgSet("-version")) {
            HelpMessageDialog help(nullptr, gArgs.IsArgSet("-version"));
            help.showOrPrint();
            return EXIT_SUCCESS;
        }

        // Install global event filter that makes sure that long tooltips can be word-wrapped
        app.installEventFilter(new typename gui_util::ToolTipToRichTextFilter(TOOLTIP_WRAP_THRESHOLD, &app));

        /// 5. Now that settings and translations are available, ask user for data directory
        // User language is set up: pick a data directory
        bool did_show_intro = false;
        int64_t prune_MiB = 0;  // Intro dialog prune configuration
        // Gracefully exit if the user cancels
        if (!Intro::showIfNeeded(did_show_intro, prune_MiB)) return EXIT_SUCCESS;

        /// 6. Determine availability of data directory and parse bitcoin.conf
        /// - Do not call gArgs.GetDataDirNet() before this step finishes
        if (!CheckDataDirOption()) {
            InitError(strprintf(Untranslated("Specified data directory \"%s\" does not exist.\n"), gArgs.GetArg("-datadir", "")));
            QMessageBox::critical(nullptr, PACKAGE_NAME,
                QObject::tr("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(gArgs.GetArg("-datadir", ""))));
            return EXIT_FAILURE;
        }
        if (!gArgs.ReadConfigFiles(error, true)) {
            InitError(strprintf(Untranslated("Error reading configuration file: %s\n"), error));
            QMessageBox::critical(nullptr, PACKAGE_NAME,
                QObject::tr("Error: Cannot parse configuration file: %1.").arg(QString::fromStdString(error)));
            return EXIT_FAILURE;
        }

        /// 7. Determine network (and switch to network specific options)
        // - Do not call Params() before this step
        // - Do this after parsing the configuration file, as the network can be switched there
        // - QSettings() will use the new application name after this, resulting in network-specific settings
        // - Needs to be done before createOptionsModel

        // Check for chain settings (Params() calls are only valid after this clause)
        try {
            SelectParams(gArgs.GetChainName());
        } catch(std::exception &e) {
            InitError(Untranslated(strprintf("%s\n", e.what())));
            QMessageBox::critical(nullptr, PACKAGE_NAME, QObject::tr("Error: %1").arg(e.what()));
            return EXIT_FAILURE;
        }
    #ifdef ENABLE_WALLET
        // Parse URIs on command line -- this can affect Params()
        PaymentServer::ipcParseCommandLine(argc, argv);
    #endif

        if (!InitSettings()) {
            return EXIT_FAILURE;
        }

        QScopedPointer<const NetworkStyle> networkStyle(NetworkStyle::instantiate(Params().NetworkIDString()));
        assert(!networkStyle.isNull());
        // Allow for separate UI settings for testnets
        QApplication::setApplicationName(networkStyle->getAppName());
        // Re-initialize translations after changing application name (language in network-specific settings can be different)
        initTranslations(qtTranslatorBase, qtTranslator, translatorBase, translator);

    #ifdef ENABLE_WALLET
        /// 8. URI IPC sending
        // - Do this early as we don't want to bother initializing if we are just calling IPC
        // - Do this *after* setting up the data directory, as the data directory hash is used in the name
        // of the server.
        // - Do this after creating app and setting up translations, so errors are
        // translated properly.
        if (PaymentServer::ipcSendCommandLine())
            exit(EXIT_SUCCESS);

        // Start up the payment server early, too, so impatient users that click on
        // bitcoin: links repeatedly have their payment requests routed to this process:
        if (WalletModel::isWalletEnabled()) {
            app.createPaymentServer();
        }
    #endif // ENABLE_WALLET

        /// 9. Main GUI initialization
        // Install global event filter that makes sure that out-of-focus labels do not contain text cursor.
        app.installEventFilter(new typename gui_util::LabelOutOfFocusEventFilter(&app));
    #if defined(Q_OS_WIN)
        // Install global event filter for processing Windows session related Windows messages (WM_QUERYENDSESSION and WM_ENDSESSION)
        qApp->installNativeEventFilter(new WinShutdownMonitor());
    #endif
        // Install qDebug() message handler to route to debug.log
        qInstallMessageHandler(DebugMessageHandler);
        // Allow parameter interaction before we create the options model
        app.parameterSetup();
        typename gui_util::LogQtInfo();
        // Load GUI settings from QSettings
        app.createOptionsModel(gArgs.GetBoolArg("-resetguisettings", false));

        if (did_show_intro) {
            // Store intro dialog settings other than datadir (network specific)
            app.InitPruneSetting(prune_MiB);
        }

        if (gArgs.GetBoolArg("-splash", DEFAULT_SPLASHSCREEN) && !gArgs.GetBoolArg("-min", false))
            app.createSplashScreen(networkStyle.data());

        app.createNode(*init);

        int rv = EXIT_SUCCESS;
        try
        {
            app.createWindow(networkStyle.data());
            // Perform base initialization before spinning up initialization/shutdown thread
            // This is acceptable because this function only contains steps that are quick to execute,
            // so the GUI thread won't be held up.
            if (app.baseInitialize()) {
                app.requestInitialize();
    #if defined(Q_OS_WIN)
                WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("%1 didn't yet exit safely…").arg(PACKAGE_NAME), (HWND)app.getMainWinId());
    #endif
                app.exec();
                rv = app.getReturnValue();
            } else {
                // A dialog with detailed error will have been shown by InitError()
                rv = EXIT_FAILURE;
            }
        } catch (const std::exception& e) {
            PrintExceptionContinue(&e, "Runaway exception");
            app.handleRunawayException(QString::fromStdString(app.node().getWarnings().translated));
        } catch (...) {
            PrintExceptionContinue(nullptr, "Runaway exception");
            app.handleRunawayException(QString::fromStdString(app.node().getWarnings().translated));
        }
        return rv;
        */
}