Add all 16 color code choices for DMR
This commit is contained in:
parent
396faec236
commit
5d2213f1c0
3 changed files with 4 additions and 4 deletions
|
@ -190,7 +190,7 @@ Item {
|
||||||
width: (parent.width / 5)
|
width: (parent.width / 5)
|
||||||
height: parent.height / rows;
|
height: parent.height / rows;
|
||||||
font.pixelSize: parent.height / 35
|
font.pixelSize: parent.height / 35
|
||||||
model: ["CC1", "CC2", "CC3", "CC4", "CC5", "CC6", "CC7"]
|
model: ["CC0", "CC1", "CC2", "CC3", "CC4", "CC5", "CC6", "CC7", "CC8", "CC9", "CC10", "CC11", "CC12", "CC13", "CC14", "CC15"]
|
||||||
contentItem: Text {
|
contentItem: Text {
|
||||||
text: _comboCC.displayText
|
text: _comboCC.displayText
|
||||||
font: _comboCC.font
|
font: _comboCC.font
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<manifest package="org.dudetronics.droidstar" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="77" android:installLocation="auto">
|
<manifest package="org.dudetronics.droidstar" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="78" android:installLocation="auto">
|
||||||
|
|
||||||
|
|
||||||
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
|
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
|
||||||
|
|
2
dmr.h
2
dmr.h
|
@ -41,7 +41,7 @@ private slots:
|
||||||
void hostname_lookup(QHostInfo i);
|
void hostname_lookup(QHostInfo i);
|
||||||
void dmr_tgid_changed(int id) { m_txdstid = id; }
|
void dmr_tgid_changed(int id) { m_txdstid = id; }
|
||||||
void dmrpc_state_changed(int p){m_flco = p ? FLCO_USER_USER : FLCO_GROUP; }
|
void dmrpc_state_changed(int p){m_flco = p ? FLCO_USER_USER : FLCO_GROUP; }
|
||||||
void cc_changed(int cc) {m_txcc = cc + 1; }
|
void cc_changed(int cc) {m_txcc = cc;}
|
||||||
void slot_changed(int s) {m_txslot = s + 1; }
|
void slot_changed(int s) {m_txslot = s + 1; }
|
||||||
void send_frame();
|
void send_frame();
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Reference in a new issue