1 //===========================================
2 //  Lumina Desktop Source Code
3 //  Copyright (c) 2016, Ken Moore & JT Pennington
4 //  Available under the 3-clause BSD license
5 //  See the LICENSE file for full details
6 //===========================================
7 #include "page_bluetooth_trueos.h"
8 #include "ui_page_bluetooth_trueos.h"
9 
10 //==========
11 //    PUBLIC
12 //==========
page_bluetooth(QWidget * parent)13 page_bluetooth::page_bluetooth(QWidget *parent) : PageWidget(parent), ui(new Ui::page_bluetooth()){
14   ui->setupUi(this);
15 
16  updateIcons();
17 }
18 
~page_bluetooth()19 page_bluetooth::~page_bluetooth(){
20 
21 }
22 
23 //================
24 //    PUBLIC SLOTS
25 //================
SaveSettings()26 void page_bluetooth::SaveSettings(){
27 
28   emit HasPendingChanges(false);
29 }
30 
LoadSettings(int)31 void page_bluetooth::LoadSettings(int){
32   emit HasPendingChanges(false);
33   emit ChangePageTitle( tr("Bluetooth Settings") );
34 }
35 
updateIcons()36 void page_bluetooth::updateIcons(){
37 
38 }
39 
40 //=================
41 //         PRIVATE
42 //=================
43 
44 //=================
45 //    PRIVATE SLOTS
46 //=================
47