Source code for timelinelib.wxgui.dialogs.editcontainer.view

# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018  Rickard Lindberg, Roger Lindberg
#
# This file is part of Timeline.
#
# Timeline is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Timeline is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Timeline.  If not, see <http://www.gnu.org/licenses/>.


from timelinelib.wxgui.dialogs.editcontainer.controller import EditContainerDialogController
from timelinelib.wxgui.framework import Dialog
from timelinelib.wxgui.utils import display_error_message
from timelinelib.wxgui.utils import _set_focus_and_select


[docs]class EditContainerDialog(Dialog): """ <BoxSizerVertical> <FlexGridSizer columns="2" growableColumns="1" proportion="1" border="ALL"> <StaticText align="ALIGN_CENTER_VERTICAL" label="$(name_text)" /> <TextCtrl name="txt_name" width="150" /> <StaticText align="ALIGN_CENTER_VERTICAL" label="$(category_text)" /> <CategoryChoice name="category_choice" allow_add="True" timeline="$(db)" align="ALIGN_CENTER_VERTICAL" /> </FlexGridSizer> <DialogButtonsOkCancelSizer border="LEFT|BOTTOM|RIGHT" event_EVT_BUTTON__ID_OK="on_ok_clicked" /> </BoxSizerVertical> """
[docs] def __init__(self, parent, title, db, container=None): Dialog.__init__(self, EditContainerDialogController, parent, { "db": db, "name_text": _("Name:"), "category_text": _("Category:"), }, title=title) self.controller.on_init(db, container)
[docs] def PopulateCategories(self): self.category_choice.Populate() self.Fit()
[docs] def GetName(self): return self.txt_name.GetValue().strip()
[docs] def SetName(self, name): self.txt_name.SetValue(name)
[docs] def GetCategory(self): return self.category_choice.GetSelectedCategory()
[docs] def SetCategory(self, category): return self.category_choice.SetSelectedCategory(category)
[docs] def DisplayInvalidName(self, message): display_error_message(message, self) _set_focus_and_select(self.txt_name)
[docs] def GetEditedContainer(self): return self.controller.get_container()