diff options
Diffstat (limited to 'app/src/main/res/layout/page_configure.xml')
-rw-r--r-- | app/src/main/res/layout/page_configure.xml | 121 |
1 files changed, 0 insertions, 121 deletions
diff --git a/app/src/main/res/layout/page_configure.xml b/app/src/main/res/layout/page_configure.xml deleted file mode 100644 index c86ff76..0000000 --- a/app/src/main/res/layout/page_configure.xml +++ /dev/null | |||
@@ -1,121 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | |||
3 | <!-- | ||
4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon | ||
5 | * Copyright (C) 2017-2018 Pacien TRAN-GIRARD | ||
6 | * | ||
7 | * This program is free software: you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation, either version 3 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
19 | --> | ||
20 | |||
21 | <ScrollView | ||
22 | xmlns:android="http://schemas.android.com/apk/res/android" | ||
23 | xmlns:tools="http://schemas.android.com/tools" | ||
24 | android:layout_width="match_parent" | ||
25 | android:layout_height="match_parent"> | ||
26 | |||
27 | <LinearLayout | ||
28 | android:id="@+id/page_configure" | ||
29 | android:layout_width="match_parent" | ||
30 | android:layout_height="wrap_content" | ||
31 | android:orientation="vertical" | ||
32 | tools:context="org.pacien.tincapp.activities.ConfigureActivity"> | ||
33 | |||
34 | <TextView | ||
35 | style="@style/AppTheme.SectionTitle" | ||
36 | android:text="@string/title_path_info"/> | ||
37 | |||
38 | <LinearLayout style="@style/AppTheme.List"> | ||
39 | |||
40 | <LinearLayout style="@style/AppTheme.ListBlock"> | ||
41 | |||
42 | <TextView | ||
43 | style="@style/AppTheme.BlockTitle" | ||
44 | android:text="@string/title_configuration_directory"/> | ||
45 | |||
46 | <TextView | ||
47 | android:id="@+id/text_configuration_directory" | ||
48 | style="@style/AppTheme.BlockContent" | ||
49 | android:textIsSelectable="true"/> | ||
50 | |||
51 | </LinearLayout> | ||
52 | |||
53 | <LinearLayout style="@style/AppTheme.ListBlock"> | ||
54 | |||
55 | <TextView | ||
56 | style="@style/AppTheme.BlockTitle" | ||
57 | android:text="@string/title_log_directory"/> | ||
58 | |||
59 | <TextView | ||
60 | android:id="@+id/text_log_directory" | ||
61 | style="@style/AppTheme.BlockContent" | ||
62 | android:textIsSelectable="true"/> | ||
63 | |||
64 | </LinearLayout> | ||
65 | |||
66 | <LinearLayout style="@style/AppTheme.ListBlock"> | ||
67 | |||
68 | <TextView | ||
69 | style="@style/AppTheme.BlockTitle" | ||
70 | android:text="@string/title_tinc_binary"/> | ||
71 | |||
72 | <TextView | ||
73 | android:id="@+id/text_tinc_binary" | ||
74 | style="@style/AppTheme.BlockContent" | ||
75 | android:textIsSelectable="true"/> | ||
76 | |||
77 | </LinearLayout> | ||
78 | |||
79 | </LinearLayout> | ||
80 | |||
81 | <TextView | ||
82 | style="@style/AppTheme.SectionTitle" | ||
83 | android:text="@string/title_tools"/> | ||
84 | |||
85 | <LinearLayout style="@style/AppTheme.List"> | ||
86 | |||
87 | <LinearLayout | ||
88 | style="@style/AppTheme.ListBlock.Clickable" | ||
89 | android:onClick="openGenerateConfDialog"> | ||
90 | |||
91 | <TextView | ||
92 | style="@style/AppTheme.BlockTitle" | ||
93 | android:text="@string/action_generate_node_configuration_and_keys"/> | ||
94 | |||
95 | </LinearLayout> | ||
96 | |||
97 | <LinearLayout | ||
98 | style="@style/AppTheme.ListBlock.Clickable" | ||
99 | android:onClick="openJoinNetworkDialog"> | ||
100 | |||
101 | <TextView | ||
102 | style="@style/AppTheme.BlockTitle" | ||
103 | android:text="@string/action_join_network_via_invitation_url"/> | ||
104 | |||
105 | </LinearLayout> | ||
106 | |||
107 | <LinearLayout | ||
108 | style="@style/AppTheme.ListBlock.Clickable" | ||
109 | android:onClick="openEncryptDecryptPrivateKeyDialog"> | ||
110 | |||
111 | <TextView | ||
112 | style="@style/AppTheme.BlockTitle" | ||
113 | android:text="@string/action_encrypt_decrypt_private_keys"/> | ||
114 | |||
115 | </LinearLayout> | ||
116 | |||
117 | </LinearLayout> | ||
118 | |||
119 | </LinearLayout> | ||
120 | |||
121 | </ScrollView> | ||