bitcoin-qt 0.1.16-alpha.0

GUI application layer code
Documentation
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
crate::ix!();

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

/**
  | Widget that shows a list of sending or
  | receiving addresses.
  |
  */
#[Q_OBJECT]
pub struct AddressBookPage {
    base:                  QDialog,
    ui:                    *mut UiAddressBookPage,
    model:                 *mut AddressTableModel,
    mode:                  AddressBookPageMode,
    tab:                   AddressBookPageTabs,
    return_value:          String,
    proxy_model:           *mut AddressBookSortFilterProxyModel,
    context_menu:          *mut QMenu,
    new_address_to_select: String,
}

pub enum AddressBookPageTabs {
    SendingTab   = 0,
    ReceivingTab = 1
}

pub enum AddressBookPageMode {

    /**
      | Open address book to pick address
      |
      */
    ForSelection, 

    /**
      | Open address book for editing
      |
      */
    ForEditing  
}

impl AddressBookPage {

    pub fn get_return_value(&self) -> &String {
        
        todo!();
        /*
            return returnValue;
        */
    }

    #[Q_SIGNAL]
    pub fn send_coins(&mut self, addr: String)  {
        
        todo!();
        /*
        
        */
    }
}

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

pub struct AddressBookSortFilterProxyModel {
    base: QSortFilterProxyModel,
    ty:   String,
}

impl AddressBookSortFilterProxyModel {

    pub fn new(
        ty:     &String,
        parent: *mut QObject) -> Self {
    
        todo!();
        /*
        : q_sort_filter_proxy_model(parent),
        : ty(type),

            setDynamicSortFilter(true);
            setFilterCaseSensitivity(QtCaseInsensitive);
            setSortCaseSensitivity(QtCaseInsensitive);
        */
    }
    
    pub fn filter_accepts_row(&self, 
        row:    i32,
        parent: &QModelIndex) -> bool {
        
        todo!();
        /*
            auto model = sourceModel();
            auto label = model->index(row, AddressTableModel::Label, parent);

            if (model->data(label, AddressTableModel::TypeRole).toString() != m_type) {
                return false;
            }

            auto address = model->index(row, AddressTableModel::Address, parent);

            if (filterRegExp().indexIn(model->data(address).toString()) < 0 &&
                filterRegExp().indexIn(model->data(label).toString()) < 0) {
                return false;
            }

            return true;
        */
    }
}

impl Drop for AddressBookPage {

    fn drop(&mut self) {
        todo!();
        /*
            delete ui;
        */
    }
}

impl AddressBookPage {

    pub fn new(
        platform_style: *const PlatformStyle,
        mode:           AddressBookPageMode,
        tab:            AddressBookPageTabs,
        parent:         *mut QWidget) -> Self {
    
        todo!();
        /*


            :
        QDialog(parent, gui_util::dialog_flags),
        ui(new UiAddressBookPage),
        model(nullptr),
        mode(_mode),
        tab(_tab)
        ui->setupUi(this);

        if (!platformStyle->getImagesOnButtons()) {
            ui->newAddress->setIcon(QIcon());
            ui->copyAddress->setIcon(QIcon());
            ui->deleteAddress->setIcon(QIcon());
            ui->exportButton->setIcon(QIcon());
        } else {
            ui->newAddress->setIcon(platformStyle->SingleColorIcon(":/icons/add"));
            ui->copyAddress->setIcon(platformStyle->SingleColorIcon(":/icons/editcopy"));
            ui->deleteAddress->setIcon(platformStyle->SingleColorIcon(":/icons/remove"));
            ui->exportButton->setIcon(platformStyle->SingleColorIcon(":/icons/export"));
        }

        switch(mode)
        {
        case ForSelection:
            switch(tab)
            {
            case SendingTab: setWindowTitle(tr("Choose the address to send coins to")); break;
            case ReceivingTab: setWindowTitle(tr("Choose the address to receive coins with")); break;
            }
            connect(ui->tableView, &QTableView::doubleClicked, this, &QDialog::accept);
            ui->tableView->setEditTriggers(QAbstractItemView::NoEditTriggers);
            ui->tableView->setFocus();
            ui->closeButton->setText(tr("C&hoose"));
            ui->exportButton->hide();
            break;
        case ForEditing:
            switch(tab)
            {
            case SendingTab: setWindowTitle(tr("Sending addresses")); break;
            case ReceivingTab: setWindowTitle(tr("Receiving addresses")); break;
            }
            break;
        }
        switch(tab)
        {
        case SendingTab:
            ui->labelExplanation->setText(tr("These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins."));
            ui->deleteAddress->setVisible(true);
            ui->newAddress->setVisible(true);
            break;
        case ReceivingTab:
            ui->labelExplanation->setText(tr("These are your Bitcoin addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.\nSigning is only possible with addresses of the type 'legacy'."));
            ui->deleteAddress->setVisible(false);
            ui->newAddress->setVisible(false);
            break;
        }

        // Build context menu
        contextMenu = new QMenu(this);
        contextMenu->addAction(tr("&Copy Address"), this, &AddressBookPage::on_copyAddress_clicked);
        contextMenu->addAction(tr("Copy &Label"), this, &AddressBookPage::onCopyLabelAction);
        contextMenu->addAction(tr("&Edit"), this, &AddressBookPage::onEditAction);

        if (tab == SendingTab) {
            contextMenu->addAction(tr("&Delete"), this, &AddressBookPage::on_deleteAddress_clicked);
        }

        connect(ui->tableView, &QWidget::customContextMenuRequested, this, &AddressBookPage::contextualMenu);
        connect(ui->closeButton, &QPushButton::clicked, this, &QDialog::accept);

        gui_util::handleCloseWindowShortcut(this);
        */
    }
    
    pub fn set_model(&mut self, model: *mut AddressTableModel)  {
        
        todo!();
        /*
            this->model = _model;
        if(!_model)
            return;

        auto type = tab == ReceivingTab ? AddressTableModel::Receive : AddressTableModel::Send;
        proxyModel = new AddressBookSortFilterProxyModel(type, this);
        proxyModel->setSourceModel(_model);

        connect(ui->searchLineEdit, &QLineEdit::textChanged, proxyModel, &QSortFilterProxyModel::setFilterWildcard);

        ui->tableView->setModel(proxyModel);
        ui->tableView->sortByColumn(0, QtAscendingOrder);

        // Set column widths
        ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Label, QHeaderView::Stretch);
        ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents);

        connect(ui->tableView->selectionModel(), &QItemSelectionModel::selectionChanged,
            this, &AddressBookPage::selectionChanged);

        // Select row for newly created address
        connect(_model, &AddressTableModel::rowsInserted, this, &AddressBookPage::selectNewAddress);

        selectionChanged();
        */
    }
    
    /**
      | Copy address of currently selected
      | address entry to clipboard
      |
      */
    #[Q_SLOT]
    pub fn on_copy_address_clicked(&mut self)  {
        
        todo!();
        /*
            gui_util::copyEntryData(ui->tableView, AddressTableModel::Address);
        */
    }
    
    /**
      | Copy label of currently selected address
      | entry to clipboard (no button)
      |
      */
    #[Q_SLOT]
    pub fn on_copy_label_action(&mut self)  {
        
        todo!();
        /*
            gui_util::copyEntryData(ui->tableView, AddressTableModel::Label);
        */
    }
    
    /**
      | Edit currently selected address entry
      | (no button)
      |
      */
    #[Q_SLOT]
    pub fn on_edit_action(&mut self)  {
        
        todo!();
        /*
            if(!model)
            return;

        if(!ui->tableView->selectionModel())
            return;
        QModelIndexList indexes = ui->tableView->selectionModel()->selectedRows();
        if(indexes.isEmpty())
            return;

        auto dlg = new EditAddressDialog(
            tab == SendingTab ?
            EditAddressDialog::EditSendingAddress :
            EditAddressDialog::EditReceivingAddress, this);
        dlg->setModel(model);
        QModelIndex origIndex = proxyModel->mapToSource(indexes.at(0));
        dlg->loadRow(origIndex.row());
        gui_util::ShowModalDialogAndDeleteOnClose(dlg);
        */
    }
    
    /**
      | Create a new address for receiving coins
      | and / or add a new address book entry
      |
      */
    #[Q_SLOT]
    pub fn on_new_address_clicked(&mut self)  {
        
        todo!();
        /*
            if(!model)
            return;

        if (tab == ReceivingTab) {
            return;
        }

        EditAddressDialog dlg(EditAddressDialog::NewSendingAddress, this);
        dlg.setModel(model);
        if(dlg.exec())
        {
            newAddressToSelect = dlg.getAddress();
        }
        */
    }
    
    /**
      | Delete currently selected address
      | entry
      |
      */
    #[Q_SLOT]
    pub fn on_delete_address_clicked(&mut self)  {
        
        todo!();
        /*
            QTableView *table = ui->tableView;
        if(!table->selectionModel())
            return;

        QModelIndexList indexes = table->selectionModel()->selectedRows();
        if(!indexes.isEmpty())
        {
            table->model()->removeRow(indexes.at(0).row());
        }
        */
    }
    
    /**
      | Set button states based on selected
      | tab and selection
      |
      */
    #[Q_SLOT]
    pub fn selection_changed(&mut self)  {
        
        todo!();
        /*
            // Set button states based on selected tab and selection
        QTableView *table = ui->tableView;
        if(!table->selectionModel())
            return;

        if(table->selectionModel()->hasSelection())
        {
            switch(tab)
            {
            case SendingTab:
                // In sending tab, allow deletion of selection
                ui->deleteAddress->setEnabled(true);
                ui->deleteAddress->setVisible(true);
                break;
            case ReceivingTab:
                // Deleting receiving addresses, however, is not allowed
                ui->deleteAddress->setEnabled(false);
                ui->deleteAddress->setVisible(false);
                break;
            }
            ui->copyAddress->setEnabled(true);
        }
        else
        {
            ui->deleteAddress->setEnabled(false);
            ui->copyAddress->setEnabled(false);
        }
        */
    }
    
    #[Q_SLOT]
    pub fn done(&mut self, retval: i32)  {
        
        todo!();
        /*
            QTableView *table = ui->tableView;
        if(!table->selectionModel() || !table->model())
            return;

        // Figure out which address was selected, and return it
        QModelIndexList indexes = table->selectionModel()->selectedRows(AddressTableModel::Address);

        for (const QModelIndex& index : indexes) {
            QVariant address = table->model()->data(index);
            returnValue = address.toString();
        }

        if(returnValue.isEmpty())
        {
            // If no address entry selected, return rejected
            retval = Rejected;
        }

        QDialog::done(retval);
        */
    }
    
    /**
      | Export button clicked
      |
      */
    #[Q_SLOT]
    pub fn on_export_button_clicked(&mut self)  {
        
        todo!();
        /*
            // CSV is currently the only supported format
        QString filename = gui_util::getSaveFileName(this,
            tr("Export Address List"), QString(),
            /*: Expanded name of the CSV file format.
                See: https://en.wikipedia.org/wiki/Comma-separated_values. */
            tr("Comma separated file") + QLatin1String(" (*.csv)"), nullptr);

        if (filename.isNull())
            return;

        CSVModelWriter writer(filename);

        // name, column, role
        writer.setModel(proxyModel);
        writer.addColumn("Label", AddressTableModel::Label, QtEditRole);
        writer.addColumn("Address", AddressTableModel::Address, QtEditRole);

        if(!writer.write()) {
            QMessageBox::critical(this, tr("Exporting Failed"),
                /*: An error message. %1 is a stand-in argument for the name
                    of the file we attempted to save to. */
                tr("There was an error trying to save the address list to %1. Please try again.").arg(filename));
        }
        */
    }
    
    /**
      | Spawn contextual menu (right mouse
      | menu) for address book entry
      |
      */
    #[Q_SLOT]
    pub fn contextual_menu(&mut self, point: &QPoint)  {
        
        todo!();
        /*
            QModelIndex index = ui->tableView->indexAt(point);
        if(index.isValid())
        {
            contextMenu->exec(QCursor::pos());
        }
        */
    }
    
    /**
      | New entry/entries were added to address
      | table
      |
      */
    #[Q_SLOT]
    pub fn select_new_address(&mut self, 
        parent: &QModelIndex,
        begin:  i32,
        end:    i32)  {
        
        todo!();
        /*
            QModelIndex idx = proxyModel->mapFromSource(model->index(begin, AddressTableModel::Address, parent));
        if(idx.isValid() && (idx.data(QtEditRole).toString() == newAddressToSelect))
        {
            // Select row of newly created address, once
            ui->tableView->setFocus();
            ui->tableView->selectRow(idx.row());
            newAddressToSelect.clear();
        }
        */
    }
}