Source code for timelinelib.wxgui.dialogs.editcategory.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.editcategory.controller import EditCategoryDialogController
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 EditCategoryDialog(Dialog): """ <BoxSizerVertical> <FlexGridSizer rows="6" 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="$(color_text)" /> <ColourSelect name="colorpicker" align="ALIGN_CENTER_VERTICAL" width="60" height="30" /> <StaticText align="ALIGN_CENTER_VERTICAL" label="$(progress_color_text)" /> <ColourSelect name="progresscolorpicker" align="ALIGN_CENTER_VERTICAL" width="60" height="30" /> <StaticText align="ALIGN_CENTER_VERTICAL" label="$(done_color_text)" /> <ColourSelect name="donecolorpicker" align="ALIGN_CENTER_VERTICAL" width="60" height="30" /> <StaticText align="ALIGN_CENTER_VERTICAL" label="$(font_color_text)" /> <ColourSelect name="fontcolorpicker" align="ALIGN_CENTER_VERTICAL" width="60" height="30" /> <StaticText align="ALIGN_CENTER_VERTICAL" label="$(parent_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, category): Dialog.__init__(self, EditCategoryDialogController, parent, { "db": db, "name_text": _("Name:"), "color_text": _("Color:"), "progress_color_text": _("Progress Color:"), "done_color_text": _("Done Color:"), "font_color_text": _("Font Color:"), "parent_text": _("Parent:"), }, title=title) self.controller.on_init(db, category)
[docs] def PopulateCategories(self, exclude): self.category_choice.Populate(exclude=exclude) self.Fit()
[docs] def GetName(self): return self.txt_name.GetValue().strip()
[docs] def SetName(self, new_name): self.txt_name.SetValue(new_name)
[docs] def GetColor(self): return self.colorpicker.GetValueAsRgbTuple()
[docs] def SetColor(self, new_color): self.colorpicker.SetValue(new_color)
[docs] def GetProgressColor(self): return self.progresscolorpicker.GetValueAsRgbTuple()
[docs] def SetProgressColor(self, new_color): self.progresscolorpicker.SetValue(new_color)
[docs] def GetDoneColor(self): return self.donecolorpicker.GetValueAsRgbTuple()
[docs] def SetDoneColor(self, new_color): self.donecolorpicker.SetValue(new_color)
[docs] def GetFontColor(self): return self.fontcolorpicker.GetValueAsRgbTuple()
[docs] def SetFontColor(self, new_color): self.fontcolorpicker.SetValue(new_color)
[docs] def GetParent(self): return self.category_choice.GetSelectedCategory()
[docs] def SetParent(self, parent): return self.category_choice.SetSelectedCategory(parent)
[docs] def HandleInvalidName(self, name): msg = _("Category name '%s' not valid. Must be non-empty.") display_error_message(msg % name, self) _set_focus_and_select(self.txt_name)
[docs] def HandleUsedName(self, name): msg = _("Category name '%s' already in use.") display_error_message(msg % name, self) _set_focus_and_select(self.txt_name)
[docs] def GetEditedCategory(self): return self.controller.get_edited_category()