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)
|
||||
height: parent.height / rows;
|
||||
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 {
|
||||
text: _comboCC.displayText
|
||||
font: _comboCC.font
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?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.
|
||||
|
|
4
dmr.h
4
dmr.h
|
@ -40,8 +40,8 @@ private slots:
|
|||
void transmit();
|
||||
void hostname_lookup(QHostInfo i);
|
||||
void dmr_tgid_changed(int id) { m_txdstid = id; }
|
||||
void dmrpc_state_changed(int p){m_flco = p ? FLCO_USER_USER : FLCO_GROUP; }
|
||||
void cc_changed(int cc) {m_txcc = cc + 1; }
|
||||
void dmrpc_state_changed(int p){m_flco = p ? FLCO_USER_USER : FLCO_GROUP; }
|
||||
void cc_changed(int cc) {m_txcc = cc;}
|
||||
void slot_changed(int s) {m_txslot = s + 1; }
|
||||
void send_frame();
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue