###やりたいこと
kivyを使用して,ID管理アプリを作成しようとしています.
何かしらの手段によって,現在登録されているIDの一覧を取得・表示し,管理したいと考えています.
###現状
とりあえずIDを取得した状態で,RecycleViewを用いてIDのリストを表示します.
リストにはチェックボックスがあり,それらをチェックした後,リスト外にある「削除」ボタンを押下することでリストから削除するアクションを実装することを検討しております.
###困っていること
表外にある削除ボタンを押下した際に,チェックがONの行だけ削除したいですが,そもそもボタン押下時にリスト内のでチェックボックスの状態を取得できず,思った通りの実装ができていません.
削除ボタン押下時(on_press)の際に,Rowで定義したCheckBoxのidを取得する方法についてご教示お願いいたします。
(Widgetの親子関係について不勉強で大変申し訳ございません。。。)
以下は使用しているkvファイルのソースコードになります。
lang
1<Manager>: 2 rv: rv 3 BoxLayout: 4 BoxLayout: 5 orientation: "vertical" 6 Label: 7 size_hint_y: 0.2 8 text: "登録ID一覧" 9 color: 0, 0, 0, 1 10 canvas.before: 11 Color: 12 rgba: 0.75, 0.75, 0.75, 1 13 Rectangle: 14 pos: self.pos 15 size: self.size 16 BoxLayout: 17 BoxLayout: 18 orientation: "vertical" 19 BoxLayout: 20 size_hint_y: 0.2 21 Label: 22 text: "ID" 23 Label: 24 text: "権限" 25 Label: 26 text: "削除" 27 BoxLayout: 28 canvas: 29 Color: 30 rgba: 0.85, 0.85, 0.85, 1 31 Rectangle: 32 size: self.size 33 pos: self.pos 34 orientation: 'vertical' 35 RecycleView: 36 id: rv 37 scroll_type: ['bars', 'content'] 38 scroll_wheel_distance: dp(56) 39 bar_width: dp(10) 40 viewclass: 'Row' 41 RecycleBoxLayout: 42 default_size: None, dp(56) 43 default_size_hint: 1, None 44 size_hint_y: None 45 height: self.minimum_height 46 orientation: 'vertical' 47 spacing: dp(2) 48 AnchorLayout: 49 size_hint_x: 0.3 50 anchor_x: "center" 51 anchor_y: "center" 52 Button: 53 text: "削除" 54 size: 80, 40 55 size_hint: None, None 56 on_press: root.delete(num,a) # 押下時に表中でチェックの入った行を削除したい 57 58<Row@BoxLayout>: 59 canvas.before: 60 Color: 61 rgba: 0.5, 0.5, 0.5, 1 62 Rectangle: 63 size: self.size 64 pos: self.pos 65 data: ("","","") 66 Label: 67 id: num 68 text: root.data[0] 69 Label: 70 id: a 71 text: root.data[1] 72 CheckBox:
python
1from kivy.app import App 2from kivy.config import Config 3from kivy.lang import Builder 4from kivy.uix.screenmanager import ScreenManager, Screen, NoTransition 5from kivy.uix.boxlayout import BoxLayout 6from kivy.properties import StringProperty, ObjectProperty, BooleanProperty 7from kivy.core.text import LabelBase, DEFAULT_FONT 8from kivy.resources import resource_add_path 9Config.set('graphics', 'width', '800') 10Config.set('graphics', 'height', '600') 11Config.set('input', 'mouse', 'mouse,disable_multitouch') # 右クリック赤丸消去 12Config.set('kivy', 'exit_on_escape', '0') # kivy ESC無効化 13 14# Path of Fonts 15resource_add_path('/usr/share/fonts/truetype/takao-gothic') 16LabelBase.register(DEFAULT_FONT, 'TakaoGothic.ttf') # 日本語が使用できるように日本語フォントを指定する 17 18# Path of KV_Lang 19Builder.load_file("./Account_for_teratail.kv") 20 21# Setting Screen 22SM = ScreenManager(transition=NoTransition()) 23 24 25class Manager(Screen): 26 rv = ObjectProperty() 27 28 def on_enter(self): 29 self.rv.data = [{'data': ("000000", "manager", "pass")}] 30 31 def delete(self, id, per): 32 print(id, per) 33 34 35# class Row(BoxLayout): 36# is_checked = BooleanProperty(False) 37# id = StringProperty() 38# permission = StringProperty() 39 40 41class GUIApp(App): 42 """ 43 実行クラス 44 """ 45 def build(self): 46 SM.add_widget(Manager(name="manager")) 47 self.title = 'アカウント管理ソフト' 48 return SM 49 50 51if __name__ == '__main__': 52 GUIApp().run() 53 54
###備考
python: 3.4.2
kivy: 1.10.0
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/02/05 00:29