Exemple #1
0
    def __createGui(self):
        self.iconsList = IconListCtrl(self)
        self.iconsList.SetMinSize((200, 150))

        # Control for selection icons group
        self.groupCtrl = wx.combo.BitmapComboBox(self, style=wx.CB_READONLY)
        self.groupCtrl.Bind(wx.EVT_COMBOBOX, handler=self.__onGroupSelect)

        self.__layout()
Exemple #2
0
    def _createGui(self):
        self.iconsList = IconListCtrl(self, theme=self._theme)
        self.iconsList.SetMinSize((200, 150))

        # Control for selection icons group
        self.groupCtrl = SwitchThemed(self, self._theme)
        self.groupCtrl.SetButtonsHeight(self._groupsButtonHeight)

        self._layout()
Exemple #3
0
class IconsPanel(wx.Panel):
    """
    Class of the panel in the "Icon" tab.
    """

    def __init__(self, parent):
        super().__init__(parent)
        self._groupsButtonHeight = 32
        self._theme = Theme()
        self._createGui()

    def _createGui(self):
        self.iconsList = IconListCtrl(self, theme=self._theme)
        self.iconsList.SetMinSize((200, 150))

        # Control for selection icons group
        self.groupCtrl = SwitchThemed(self, self._theme)
        self.groupCtrl.SetButtonsHeight(self._groupsButtonHeight)

        self._layout()

    def _layout(self):
        iconSizer = wx.FlexGridSizer(cols=2)
        iconSizer.AddGrowableRow(0)
        iconSizer.AddGrowableCol(0, 1)
        iconSizer.AddGrowableCol(1, 3)
        iconSizer.Add(self.groupCtrl, 1, wx.ALL | wx.EXPAND, 2)
        iconSizer.Add(self.iconsList, 1, wx.ALL | wx.EXPAND, 2)

        self.SetSizer(iconSizer)
        self.Layout()
Exemple #4
0
    def __createGui(self):
        self.iconsList = IconListCtrl(self)
        self.iconsList.SetMinSize((200, 150))

        # Control for selection icons group
        self.groupCtrl = wx.combo.BitmapComboBox(self, style=wx.CB_READONLY)
        self.groupCtrl.Bind(wx.EVT_COMBOBOX, handler=self.__onGroupSelect)

        self.__layout()
Exemple #5
0
class IconsPanel(wx.Panel):
    """
    Class of the panel in the "Icon" tab.
    """

    def __init__(self, parent):
        super(IconsPanel, self).__init__(parent)

        self._iconsCollections = [IconsCollection(path) for path in getIconsDirList()]
        self.__createGui()

        self.__appendGroups()
        self.groupCtrl.SetSelection(0)
        self.__switchToCurrentGroup()

    def __createGui(self):
        self.iconsList = IconListCtrl(self)
        self.iconsList.SetMinSize((200, 150))

        # Control for selection icons group
        self.groupCtrl = wx.combo.BitmapComboBox(self, style=wx.CB_READONLY)
        self.groupCtrl.Bind(wx.EVT_COMBOBOX, handler=self.__onGroupSelect)

        self.__layout()

    def __layout(self):
        iconSizer = wx.FlexGridSizer(rows=2)
        iconSizer.AddGrowableRow(1)
        iconSizer.AddGrowableCol(0)
        iconSizer.Add(self.groupCtrl, 1, wx.ALL | wx.EXPAND, 2)
        iconSizer.Add(self.iconsList, 1, wx.ALL | wx.EXPAND, 2)

        self.SetSizer(iconSizer)
        self.Layout()

    def __appendGroups(self):
        for n, collection in enumerate(self._iconsCollections):
            # First None is root directory
            for group in [None] + sorted(collection.getGroups(), key=self._localize):
                # Get group name
                if group is None:
                    title = _(u"Not in groups")
                else:
                    title = self._localize(group)

                if n != 0:
                    title += u" *"
                # Every item has tuple (collection index, group name)
                self.groupCtrl.Append(title, self._getCover(collection, group), (n, group))

    def _getImageForGroup(self, fname):
        neww = ICON_WIDTH
        newh = ICON_HEIGHT + 2

        wx.Log_EnableLogging(False)
        image = wx.Image(fname)
        wx.Log_EnableLogging(True)

        if not image.IsOk():
            print _(u"Invalid icon file: {}").format(fname)
            return wx.NullBitmap

        posx = (neww - image.Width) / 2
        posy = (newh - image.Height) / 2
        image.Resize((neww, newh), (posx, posy), 255, 255, 255)

        return wx.BitmapFromImage(image)

    def _getCover(self, collection, groupname):
        """
        Return bitmap for combobox item
        """
        fname = collection.getCover(groupname)
        if fname is not None:
            return self._getImageForGroup(fname)

        return wx.NullBitmap

    def _getRootCover(self):
        """
        Return bitmap for combobox item
        """
        # fname = self._iconsCollections[0].getCover (None)
        fname = None
        for collection in self._iconsCollections:
            cover = collection.getCover(None)
            if cover is not None:
                fname = cover

        if fname is not None:
            return self._getImageForGroup(fname)

        return wx.NullBitmap

    def __onGroupSelect(self, event):
        self.__switchToCurrentGroup()

    def __getCurrentIcons(self):
        index, groupname = self.groupCtrl.GetClientData(self.groupCtrl.GetSelection())

        icons = self._iconsCollections[index].getIcons(groupname)
        icons.sort()

        return icons

    def __switchToCurrentGroup(self):
        icons = self.__getCurrentIcons()
        icons.sort(key=os.path.basename)
        self.iconsList.setIconsList(icons)

    def _localize(self, groupname):
        name = _(groupname)
        return name.capitalize()
Exemple #6
0
    def __createGuiElements(self):
        mainSizer = wx.FlexGridSizer(cols=2, rows=1)
        mainSizer.AddGrowableCol(1)
        mainSizer.AddGrowableRow(0)

        #
        # Controls for groups
        groupsSizer = wx.FlexGridSizer(cols=1)
        groupsSizer.AddGrowableCol(0)
        groupsSizer.AddGrowableRow(0)

        self._groups = wx.TreeCtrl(self, style=wx.TR_HAS_BUTTONS | wx.TR_EDIT_LABELS | wx.SUNKEN_BORDER)
        self._groups.SetMinSize((200, -1))

        self._imagelist = wx.ImageList(ICON_WIDTH, ICON_HEIGHT)
        self._groups.AssignImageList(self._imagelist)

        imagesDir = getImagesDir()

        # Buttons for groups
        groupButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add a group
        addGroupBtn = wx.BitmapButton(self, id=self.ADD_GROUP, bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png")))
        addGroupBtn.SetToolTipString(_(u"Add new group"))

        # Remove a group
        removeGroupBtn = wx.BitmapButton(
            self, id=self.REMOVE_GROUP, bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        removeGroupBtn.SetToolTipString(_(u"Remove group"))

        # Rename a group
        renameGroupBtn = wx.BitmapButton(
            self, id=self.RENAME_GROUP, bitmap=wx.Bitmap(os.path.join(imagesDir, "pencil.png"))
        )
        renameGroupBtn.SetToolTipString(_(u"Rename group"))

        groupButtonsSizer.Add(addGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(removeGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(renameGroupBtn, flag=wx.ALL, border=0)

        groupsSizer.Add(self._groups, 1, wx.RIGHT | wx.EXPAND, border=2)
        groupsSizer.Add(groupButtonsSizer, 1, wx.RIGHT | wx.EXPAND, border=2)

        #
        # Controls for icons in the group
        iconsSizer = wx.FlexGridSizer(cols=1)
        iconsSizer.AddGrowableRow(0)
        iconsSizer.AddGrowableCol(0)

        self._iconsList = IconListCtrl(self, True)

        # Buttons for icons in the group
        iconsButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add icons
        addIconsBtn = wx.BitmapButton(self, id=self.ADD_ICONS, bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png")))
        addIconsBtn.SetToolTipString(_(u"Add icons"))

        # Remove icons
        removeIconsBtn = wx.BitmapButton(
            self, id=self.REMOVE_ICONS, bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        removeIconsBtn.SetToolTipString(_(u"Remove selected icons"))

        # Set icon as group cover
        setCoverBtn = wx.BitmapButton(self, id=self.SET_COVER, bitmap=wx.Bitmap(os.path.join(imagesDir, "picture.png")))
        setCoverBtn.SetToolTipString(_(u"Set icon as group cover"))

        iconsButtonsSizer.Add(addIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(removeIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(setCoverBtn, flag=wx.ALL, border=0)

        iconsSizer.Add(self._iconsList, 1, wx.LEFT | wx.EXPAND, border=2)
        iconsSizer.Add(iconsButtonsSizer, 1, wx.LEFT | wx.EXPAND, border=2)

        # Main sizer
        mainSizer.Add(groupsSizer, 1, wx.ALL | wx.EXPAND, border=0)
        mainSizer.Add(iconsSizer, 1, wx.ALL | wx.EXPAND, border=0)

        self.SetSizer(mainSizer)
        self.Layout()
Exemple #7
0
class IconsetPanel(BasePrefPanel):
    def __init__(self, parent):
        super(type(self), self).__init__(parent)

        self.ADD_GROUP = wx.NewId()
        self.REMOVE_GROUP = wx.NewId()
        self.RENAME_GROUP = wx.NewId()

        self.ADD_ICONS = wx.NewId()
        self.REMOVE_ICONS = wx.NewId()
        self.SET_COVER = wx.NewId()

        self.__createGuiElements()

        self._groups.Bind(wx.EVT_TREE_SEL_CHANGED, handler=self.__onGroupSelect)
        self._groups.Bind(wx.EVT_TREE_BEGIN_LABEL_EDIT, self.__onBeginLabelEdit)
        self._groups.Bind(wx.EVT_TREE_END_LABEL_EDIT, self.__onEndLabelEdit)

        self.Bind(wx.EVT_BUTTON, handler=self.__onAddGroup, id=self.ADD_GROUP)
        self.Bind(wx.EVT_BUTTON, handler=self.__onRenameGroup, id=self.RENAME_GROUP)
        self.Bind(wx.EVT_BUTTON, handler=self.__onRemoveGroup, id=self.REMOVE_GROUP)

        self.Bind(wx.EVT_BUTTON, handler=self.__onAddIcons, id=self.ADD_ICONS)
        self.Bind(wx.EVT_BUTTON, handler=self.__onRemoveIcons, id=self.REMOVE_ICONS)
        self.Bind(wx.EVT_BUTTON, handler=self.__onSetCover, id=self.SET_COVER)

        self._groups.Bind(wx.EVT_KEY_DOWN, handler=self.__onKeyDown)

        self.__updateGroups()

    def __createGuiElements(self):
        mainSizer = wx.FlexGridSizer(cols=2, rows=1)
        mainSizer.AddGrowableCol(1)
        mainSizer.AddGrowableRow(0)

        #
        # Controls for groups
        groupsSizer = wx.FlexGridSizer(cols=1)
        groupsSizer.AddGrowableCol(0)
        groupsSizer.AddGrowableRow(0)

        self._groups = wx.TreeCtrl(self, style=wx.TR_HAS_BUTTONS | wx.TR_EDIT_LABELS | wx.SUNKEN_BORDER)
        self._groups.SetMinSize((200, -1))

        self._imagelist = wx.ImageList(ICON_WIDTH, ICON_HEIGHT)
        self._groups.AssignImageList(self._imagelist)

        imagesDir = getImagesDir()

        # Buttons for groups
        groupButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add a group
        addGroupBtn = wx.BitmapButton(self, id=self.ADD_GROUP, bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png")))
        addGroupBtn.SetToolTipString(_(u"Add new group"))

        # Remove a group
        removeGroupBtn = wx.BitmapButton(
            self, id=self.REMOVE_GROUP, bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        removeGroupBtn.SetToolTipString(_(u"Remove group"))

        # Rename a group
        renameGroupBtn = wx.BitmapButton(
            self, id=self.RENAME_GROUP, bitmap=wx.Bitmap(os.path.join(imagesDir, "pencil.png"))
        )
        renameGroupBtn.SetToolTipString(_(u"Rename group"))

        groupButtonsSizer.Add(addGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(removeGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(renameGroupBtn, flag=wx.ALL, border=0)

        groupsSizer.Add(self._groups, 1, wx.RIGHT | wx.EXPAND, border=2)
        groupsSizer.Add(groupButtonsSizer, 1, wx.RIGHT | wx.EXPAND, border=2)

        #
        # Controls for icons in the group
        iconsSizer = wx.FlexGridSizer(cols=1)
        iconsSizer.AddGrowableRow(0)
        iconsSizer.AddGrowableCol(0)

        self._iconsList = IconListCtrl(self, True)

        # Buttons for icons in the group
        iconsButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add icons
        addIconsBtn = wx.BitmapButton(self, id=self.ADD_ICONS, bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png")))
        addIconsBtn.SetToolTipString(_(u"Add icons"))

        # Remove icons
        removeIconsBtn = wx.BitmapButton(
            self, id=self.REMOVE_ICONS, bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        removeIconsBtn.SetToolTipString(_(u"Remove selected icons"))

        # Set icon as group cover
        setCoverBtn = wx.BitmapButton(self, id=self.SET_COVER, bitmap=wx.Bitmap(os.path.join(imagesDir, "picture.png")))
        setCoverBtn.SetToolTipString(_(u"Set icon as group cover"))

        iconsButtonsSizer.Add(addIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(removeIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(setCoverBtn, flag=wx.ALL, border=0)

        iconsSizer.Add(self._iconsList, 1, wx.LEFT | wx.EXPAND, border=2)
        iconsSizer.Add(iconsButtonsSizer, 1, wx.LEFT | wx.EXPAND, border=2)

        # Main sizer
        mainSizer.Add(groupsSizer, 1, wx.ALL | wx.EXPAND, border=0)
        mainSizer.Add(iconsSizer, 1, wx.ALL | wx.EXPAND, border=0)

        self.SetSizer(mainSizer)
        self.Layout()

    def Save(self):
        pass

    def LoadState(self):
        pass

    def __updateGroups(self):
        self._groups.DeleteAllItems()
        self._imagelist.RemoveAll()

        collection = self.__getIconsCollection()

        # Add the root element
        rootimage = collection.getCover(None)
        imageIndex = -1 if rootimage is None else self._imagelist.Add(wx.Bitmap(rootimage))
        rootItem = self._groups.AddRoot(_(u"Not in groups"), imageIndex)

        # Add child groups
        for group in collection.getGroups():
            image = collection.getCover(group)
            imageIndex = -1 if image is None else self._imagelist.Add(wx.Bitmap(image))

            self._groups.AppendItem(rootItem, group, imageIndex, data=wx.TreeItemData(group))

        self._groups.Expand(rootItem)
        self._groups.SelectItem(rootItem)
        self.__onGroupSelect(None)

    def __getIconsCollection(self):
        return IconsCollection(getIconsDirList()[-1])

    def __showIcons(self, groupname):
        """
        Show icons from group groupname.
        If groupname is None then icons from root will be showned
        """
        self._iconsList.clear()
        collection = self.__getIconsCollection()
        icons = collection.getIcons(groupname)
        self._iconsList.setIconsList(icons)

    def __onGroupSelect(self, event):
        """
        User select other group
        """
        selItem = self._groups.GetSelection()
        if not selItem.IsOk():
            return

        group = self._groups.GetItemData(selItem).GetData()
        self.__showIcons(group)

    def __onAddGroup(self, event):
        collection = self.__getIconsCollection()
        newGroupName = self.__getNewGroupName(collection.getGroups())
        try:
            collection.addGroup(newGroupName)
            self.__updateGroups()
            self.__selectGroupItem(newGroupName)
        except (IOError, SystemError):
            MessageBox(_(u"Can't create directory for icons group"), _(u"Error"), wx.OK | wx.ICON_ERROR)

    def __selectGroupItem(self, groupname):
        """
        Select group in _groups tree. If groupname is None then select root element.
        If groupname not exists then method does nothing.
        """
        rootItem = self._groups.GetRootItem()
        assert rootItem.IsOk()

        if groupname is None:
            self._groups.SelectItem(rootItem)

        nextGroupItem, cookie = self._groups.GetFirstChild(rootItem)

        while nextGroupItem.IsOk():
            if self._groups.GetItemData(nextGroupItem).GetData() == groupname:
                self._groups.SelectItem(nextGroupItem)
                break

            nextGroupItem, cookie = self._groups.GetNextChild(rootItem, cookie)

    def __getNewGroupName(self, groups):
        """
        Return name for new group
        """
        newGroupTemplate = _(u"New group{}")
        newGroupName = newGroupTemplate.format(u"")
        if newGroupName in groups:
            # Generate new group name in format "New group (1)", "New group (2)" etc
            index = 0
            while newGroupName in groups:
                index += 1
                newGroupName = newGroupTemplate.format(u" ({})".format(index))
        return newGroupName

    def __onEndLabelEdit(self, event):
        if event.IsEditCancelled():
            return

        event.Veto()
        oldGroupName = self._groups.GetItemData(event.GetItem()).GetData()
        newGroupName = event.GetLabel().strip()

        assert oldGroupName is not None

        collection = self.__getIconsCollection()

        try:
            collection.renameGroup(oldGroupName, newGroupName)
        except (IOError, SystemError):
            MessageBox(_(u"Can't rename directory for icons group"), _(u"Error"), wx.OK | wx.ICON_ERROR)
            return
        except DuplicateGroupError:
            MessageBox(
                _(u'Group with name "{}" exists already').format(newGroupName), _(u"Error"), wx.OK | wx.ICON_ERROR
            )
            return
        except ValueError:
            MessageBox(_(u'Invalid group name "{}"').format(newGroupName), _(u"Error"), wx.OK | wx.ICON_ERROR)
            return

        self.__updateGroups()
        self.__selectGroupItem(newGroupName)

    def __onBeginLabelEdit(self, event):
        item = event.GetItem()
        group = self._groups.GetItemData(item).GetData()
        if group is None:
            # Root element
            event.Veto()

    def __onRenameGroup(self, event):
        selItem = self._groups.GetSelection()
        rootItem = self._groups.GetRootItem()

        if selItem.IsOk() and selItem != rootItem:
            self._groups.EditLabel(selItem)

    def __onRemoveGroup(self, event):
        selItem = self._groups.GetSelection()
        rootItem = self._groups.GetRootItem()

        if not selItem.IsOk() or selItem == rootItem:
            return

        groupname = self._groups.GetItemData(selItem).GetData()
        assert groupname is not None

        if (
            MessageBox(
                _(u'Remove group "{}" and all icons inside it?').format(groupname),
                _(u"Remove group?"),
                wx.YES_NO | wx.ICON_QUESTION,
            )
            == wx.YES
        ):
            try:
                self.__getIconsCollection().removeGroup(groupname)
            except (IOError, SystemError):
                MessageBox(_(u"Can't remove group directory"), _(u"Error"), wx.OK | wx.ICON_ERROR)
                return
            self.__updateGroups()

    def __onAddIcons(self, event):
        wildcard = u"{images} (*.png; *.jpg; *.jpeg; *.gif; *.bmp)|*.png; *.jpg; *.jpeg; *.gif; *.bmp|*.png|*.png|*.jpg; *.jpeg|*.jpg;*.jpeg|*.gif|*.gif|*.bmp|*.bmp|{all} (*.*)|*.*".format(
            images=_(u"All image files"), all=_(u"All files")
        )
        style = wx.FD_OPEN | wx.FD_MULTIPLE | wx.FD_FILE_MUST_EXIST

        with TestedFileDialog(self, _(u"Select images"), wildcard=wildcard, style=style) as dlg:
            if dlg.ShowModal() == wx.ID_OK:
                item = self._groups.GetSelection()
                group = self._groups.GetItemData(item).GetData()

                collection = self.__getIconsCollection()
                collection.addIcons(group, dlg.GetPaths())
                self.__updateGroups()
                self.__selectGroupItem(group)

    def __onRemoveIcons(self, event):
        icons = self._iconsList.getSelection()
        if not icons:
            MessageBox(_(u"You have not selected any icons"), _(u"Select icons"), wx.OK | wx.ICON_INFORMATION)
            return

        if MessageBox(_(u"Remove selected icons?"), _(u"Remove icons"), wx.YES_NO | wx.ICON_QUESTION) == wx.YES:
            for fname in icons:
                try:
                    os.remove(fname)
                except (IOError, SystemError):
                    pass

            item = self._groups.GetSelection()
            group = self._groups.GetItemData(item).GetData()
            self.__updateGroups()
            self.__selectGroupItem(group)

    def __onSetCover(self, event):
        icons = self._iconsList.getSelection()
        if not icons:
            MessageBox(_(u"You have not selected any icons"), _(u"Select icons"), wx.OK | wx.ICON_ERROR)
            return

        item = self._groups.GetSelection()
        group = self._groups.GetItemData(item).GetData()

        collection = self.__getIconsCollection()
        collection.setCover(group, icons[0])

        self.__updateGroups()
        self.__selectGroupItem(group)

    def __onKeyDown(self, event):
        if (
            event.GetKeyCode() == wx.WXK_F2
            and not event.AltDown()
            and not event.CmdDown()
            and not event.ControlDown()
            and not event.ShiftDown()
        ):
            self.__onRenameGroup(None)
Exemple #8
0
    def __createGuiElements(self):
        mainSizer = wx.FlexGridSizer(cols=2, rows=1, vgap=0, hgap=0)
        mainSizer.AddGrowableCol(1)
        mainSizer.AddGrowableRow(0)

        #
        # Controls for groups
        groupsSizer = wx.FlexGridSizer(cols=1, rows=0, vgap=0, hgap=0)
        groupsSizer.AddGrowableCol(0)
        groupsSizer.AddGrowableRow(0)

        self._groups = wx.TreeCtrl(
            self,
            style=wx.TR_HAS_BUTTONS | wx.TR_EDIT_LABELS | wx.SUNKEN_BORDER)
        self._groups.SetMinSize((200, 200))

        self._imagelist = SafeImageList(ICON_WIDTH, ICON_HEIGHT)
        self._groups.AssignImageList(self._imagelist)

        imagesDir = getImagesDir()

        # Buttons for groups
        groupButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add a group
        self.addGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png"))
        )
        self.addGroupBtn.SetToolTip(_(u"Add new group"))
        self.addGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onAddGroup)

        # Remove a group
        self.removeGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        self.removeGroupBtn.SetToolTip(_(u"Remove group"))
        self.removeGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onRemoveGroup)

        # Rename a group
        self.renameGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "pencil.png"))
        )
        self.renameGroupBtn.SetToolTip(_(u"Rename group"))
        self.renameGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onRenameGroup)

        groupButtonsSizer.Add(self.addGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(self.removeGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(self.renameGroupBtn, flag=wx.ALL, border=0)

        groupsSizer.Add(self._groups, 1, wx.RIGHT | wx.EXPAND, border=2)
        groupsSizer.Add(groupButtonsSizer, 1, wx.RIGHT | wx.EXPAND, border=2)

        #
        # Controls for icons in the group
        iconsSizer = wx.FlexGridSizer(cols=1, rows=0, vgap=0, hgap=0)
        iconsSizer.AddGrowableRow(0)
        iconsSizer.AddGrowableCol(0)

        self._iconsList = IconListCtrl(self, True)
        self._iconsList.SetMinSize((200, 150))

        # Buttons for icons in the group
        iconsButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add icons
        self.addIconsBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png"))
        )
        self.addIconsBtn.SetToolTip(_(u"Add icons"))
        self.addIconsBtn.Bind(wx.EVT_BUTTON, handler=self.__onAddIcons)

        # Remove icons
        self.removeIconsBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        self.removeIconsBtn.SetToolTip(_(u"Remove selected icons"))
        self.removeIconsBtn.Bind(wx.EVT_BUTTON, handler=self.__onRemoveIcons)

        # Set icon as group cover
        self.setCoverBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "picture.png"))
        )
        self.setCoverBtn.SetToolTip(_(u"Set icon as group cover"))
        self.setCoverBtn.Bind(wx.EVT_BUTTON, handler=self.__onSetCover)

        iconsButtonsSizer.Add(self.addIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(self.removeIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(self.setCoverBtn, flag=wx.ALL, border=0)

        iconsSizer.Add(self._iconsList, 1, wx.LEFT | wx.EXPAND, border=2)
        iconsSizer.Add(iconsButtonsSizer, 1, wx.LEFT | wx.EXPAND, border=2)

        # Main sizer
        mainSizer.Add(groupsSizer, 1, wx.ALL | wx.EXPAND, border=0)
        mainSizer.Add(iconsSizer, 1, wx.ALL | wx.EXPAND, border=0)

        self.SetSizer(mainSizer)
        self.Layout()
Exemple #9
0
class IconsetPanel(BasePrefPanel):
    def __init__(self, parent):
        super(type(self), self).__init__(parent)

        self._default_group_cover = os.path.join(getImagesDir(),
                                                 u'icons_cover_default.png')

        self.__createGuiElements()

        self._groups.Bind(wx.EVT_TREE_SEL_CHANGED,
                          handler=self.__onGroupSelect)

        self._groups.Bind(wx.EVT_TREE_BEGIN_LABEL_EDIT,
                          self.__onBeginLabelEdit)

        self._groups.Bind(wx.EVT_TREE_END_LABEL_EDIT,
                          self.__onEndLabelEdit)

        self._groups.Bind(wx.EVT_KEY_DOWN, handler=self.__onKeyDown)

        self.__updateGroups()
        self.SetupScrolling()

    def __createGuiElements(self):
        mainSizer = wx.FlexGridSizer(cols=2, rows=1, vgap=0, hgap=0)
        mainSizer.AddGrowableCol(1)
        mainSizer.AddGrowableRow(0)

        #
        # Controls for groups
        groupsSizer = wx.FlexGridSizer(cols=1, rows=0, vgap=0, hgap=0)
        groupsSizer.AddGrowableCol(0)
        groupsSizer.AddGrowableRow(0)

        self._groups = wx.TreeCtrl(
            self,
            style=wx.TR_HAS_BUTTONS | wx.TR_EDIT_LABELS | wx.SUNKEN_BORDER)
        self._groups.SetMinSize((200, 200))

        self._imagelist = SafeImageList(ICON_WIDTH, ICON_HEIGHT)
        self._groups.AssignImageList(self._imagelist)

        imagesDir = getImagesDir()

        # Buttons for groups
        groupButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add a group
        self.addGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png"))
        )
        self.addGroupBtn.SetToolTip(_(u"Add new group"))
        self.addGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onAddGroup)

        # Remove a group
        self.removeGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        self.removeGroupBtn.SetToolTip(_(u"Remove group"))
        self.removeGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onRemoveGroup)

        # Rename a group
        self.renameGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "pencil.png"))
        )
        self.renameGroupBtn.SetToolTip(_(u"Rename group"))
        self.renameGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onRenameGroup)

        groupButtonsSizer.Add(self.addGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(self.removeGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(self.renameGroupBtn, flag=wx.ALL, border=0)

        groupsSizer.Add(self._groups, 1, wx.RIGHT | wx.EXPAND, border=2)
        groupsSizer.Add(groupButtonsSizer, 1, wx.RIGHT | wx.EXPAND, border=2)

        #
        # Controls for icons in the group
        iconsSizer = wx.FlexGridSizer(cols=1, rows=0, vgap=0, hgap=0)
        iconsSizer.AddGrowableRow(0)
        iconsSizer.AddGrowableCol(0)

        self._iconsList = IconListCtrl(self, True)
        self._iconsList.SetMinSize((200, 150))

        # Buttons for icons in the group
        iconsButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add icons
        self.addIconsBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png"))
        )
        self.addIconsBtn.SetToolTip(_(u"Add icons"))
        self.addIconsBtn.Bind(wx.EVT_BUTTON, handler=self.__onAddIcons)

        # Remove icons
        self.removeIconsBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        self.removeIconsBtn.SetToolTip(_(u"Remove selected icons"))
        self.removeIconsBtn.Bind(wx.EVT_BUTTON, handler=self.__onRemoveIcons)

        # Set icon as group cover
        self.setCoverBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "picture.png"))
        )
        self.setCoverBtn.SetToolTip(_(u"Set icon as group cover"))
        self.setCoverBtn.Bind(wx.EVT_BUTTON, handler=self.__onSetCover)

        iconsButtonsSizer.Add(self.addIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(self.removeIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(self.setCoverBtn, flag=wx.ALL, border=0)

        iconsSizer.Add(self._iconsList, 1, wx.LEFT | wx.EXPAND, border=2)
        iconsSizer.Add(iconsButtonsSizer, 1, wx.LEFT | wx.EXPAND, border=2)

        # Main sizer
        mainSizer.Add(groupsSizer, 1, wx.ALL | wx.EXPAND, border=0)
        mainSizer.Add(iconsSizer, 1, wx.ALL | wx.EXPAND, border=0)

        self.SetSizer(mainSizer)
        self.Layout()

    def Save(self):
        pass

    def LoadState(self):
        pass

    def __updateGroups(self):
        self._groups.DeleteAllItems()
        self._imagelist.RemoveAll()

        collection = self.__getIconsCollection()

        # Add the root element
        rootimage = collection.getCover(None)
        imageIndex = -1 if rootimage is None else self._imagelist.Add(wx.Bitmap(rootimage))
        rootItem = self._groups.AddRoot(_(u"Not in groups"),
                                        imageIndex,
                                        data=None)

        # Add child groups
        for group in collection.getGroups():
            image = collection.getCover(group)
            if image is None:
                image = self._default_group_cover

            imageIndex = self._imagelist.Add(wx.Bitmap(image))

            self._groups.AppendItem(rootItem,
                                    group,
                                    imageIndex,
                                    data=group)

        self._groups.Expand(rootItem)
        self._groups.SelectItem(rootItem)
        self.__onGroupSelect(None)

    def __getIconsCollection(self):
        return IconsCollection(getIconsDirList()[-1])

    def __showIcons(self, groupname):
        """
        Show icons from group groupname.
        If groupname is None then icons from root will be showed
        """
        self._iconsList.clear()
        collection = self.__getIconsCollection()
        icons = collection.getIcons(groupname)
        self._iconsList.setIconsList(icons)

    def __onGroupSelect(self, event):
        """
        User select other group
        """
        selItem = self._groups.GetSelection()
        if not selItem.IsOk():
            return

        group = self._groups.GetItemData(selItem)
        self.__showIcons(group)

    def __onAddGroup(self, event):
        collection = self.__getIconsCollection()
        newGroupName = self.__getNewGroupName(collection.getGroups())
        try:
            collection.addGroup(newGroupName)
            self.__updateGroups()
            self.__selectGroupItem(newGroupName)
        except(IOError, SystemError):
            MessageBox(
                _(u"Can't create directory for icons group"),
                _(u"Error"),
                wx.OK | wx.ICON_ERROR)

    def __selectGroupItem(self, groupname):
        """
        Select group in _groups tree. If groupname is None then select
        the root element.
        If groupname not exists then method does nothing.
        """
        rootItem = self._groups.GetRootItem()
        assert rootItem.IsOk()

        if groupname is None:
            self._groups.SelectItem(rootItem)

        nextGroupItem, cookie = self._groups.GetFirstChild(rootItem)

        while nextGroupItem.IsOk():
            if self._groups.GetItemData(nextGroupItem) == groupname:
                self._groups.SelectItem(nextGroupItem)
                break

            nextGroupItem, cookie = self._groups.GetNextChild(rootItem, cookie)

    def __getNewGroupName(self, groups):
        """
        Return name for new group
        """
        newGroupTemplate = _(u"New group{}")
        newGroupName = newGroupTemplate.format(u"")
        if newGroupName in groups:
            # Generate new group name in format "New group(1)",
            # "New group(2)" etc
            index = 0
            while newGroupName in groups:
                index += 1
                newGroupName = newGroupTemplate.format(u"({})".format(index))
        return newGroupName

    def __onEndLabelEdit(self, event):
        if event.IsEditCancelled():
            return

        event.Veto()
        oldGroupName = self._groups.GetItemData(event.GetItem())
        newGroupName = event.GetLabel().strip()

        assert oldGroupName is not None

        collection = self.__getIconsCollection()

        try:
            collection.renameGroup(oldGroupName, newGroupName)
        except(IOError, SystemError):
            MessageBox(
                _(u"Can't rename directory for icons group"),
                _(u"Error"),
                wx.OK | wx.ICON_ERROR)
            return
        except DuplicateGroupError:
            MessageBox(
                _(u'Group with name "{}" exists already').format(newGroupName),
                _(u"Error"),
                wx.OK | wx.ICON_ERROR)
            return
        except ValueError:
            MessageBox(
                _(u'Invalid group name "{}"').format(newGroupName),
                _(u"Error"),
                wx.OK | wx.ICON_ERROR)
            return

        self.__updateGroups()
        self.__selectGroupItem(newGroupName)

    def __onBeginLabelEdit(self, event):
        item = event.GetItem()
        group = self._groups.GetItemData(item)
        if group is None:
            # Root element
            event.Veto()

    def __onRenameGroup(self, event):
        selItem = self._groups.GetSelection()
        rootItem = self._groups.GetRootItem()

        if selItem.IsOk() and selItem != rootItem:
            self._groups.EditLabel(selItem)

    def __onRemoveGroup(self, event):
        selItem = self._groups.GetSelection()
        rootItem = self._groups.GetRootItem()

        if not selItem.IsOk() or selItem == rootItem:
            return

        groupname = self._groups.GetItemData(selItem)
        assert groupname is not None

        if MessageBox(
                _(u'Remove group "{}" and all icons inside it?').format(groupname),
                _(u"Remove group?"),
                wx.YES_NO | wx.ICON_QUESTION) == wx.YES:
            try:
                self.__getIconsCollection().removeGroup(groupname)
            except(IOError, SystemError):
                MessageBox(
                    _(u"Can't remove group directory"),
                    _(u"Error"),
                    wx.OK | wx.ICON_ERROR)
                return
            self.__updateGroups()

    def __onAddIcons(self, event):
        wildcard = u"{images}(*.png; *.jpg; *.jpeg; *.gif; *.bmp)|*.png; *.jpg; *.jpeg; *.gif; *.bmp|*.png|*.png|*.jpg; *.jpeg|*.jpg;*.jpeg|*.gif|*.gif|*.bmp|*.bmp|{all}(*.*)|*.*".format(
            images=_(u"All image files"),
            all=_(u"All files"))
        style = wx.FD_OPEN | wx.FD_MULTIPLE | wx.FD_FILE_MUST_EXIST

        with TestedFileDialog(
                self,
                _(u"Select images"),
                wildcard=wildcard,
                style=style) as dlg:
            if dlg.ShowModal() == wx.ID_OK:
                item = self._groups.GetSelection()
                group = self._groups.GetItemData(item)

                collection = self.__getIconsCollection()
                collection.addIcons(group, dlg.GetPaths())
                self.__updateGroups()
                self.__selectGroupItem(group)

    def __onRemoveIcons(self, event):
        icons = self._iconsList.getSelection()
        if not icons:
            MessageBox(
                _(u"You have not selected any icons"),
                _(u"Select icons"),
                wx.OK | wx.ICON_INFORMATION)
            return

        if MessageBox(
                _(u"Remove selected icons?"),
                _(u"Remove icons"),
                wx.YES_NO | wx.ICON_QUESTION) == wx.YES:
            for fname in icons:
                try:
                    os.remove(fname)
                except(IOError, SystemError):
                    pass

            item = self._groups.GetSelection()
            group = self._groups.GetItemData(item)
            self.__updateGroups()
            self.__selectGroupItem(group)

    def __onSetCover(self, event):
        icons = self._iconsList.getSelection()
        if not icons:
            MessageBox(
                _(u"You have not selected any icons"),
                _(u"Select icons"),
                wx.OK | wx.ICON_ERROR)
            return

        item = self._groups.GetSelection()
        group = self._groups.GetItemData(item)

        collection = self.__getIconsCollection()
        collection.setCover(group, icons[0])

        self.__updateGroups()
        self.__selectGroupItem(group)

    def __onKeyDown(self, event):
        if (event.GetKeyCode() == wx.WXK_F2 and
                not event.AltDown() and
                not event.CmdDown() and
                not event.ControlDown() and
                not event.ShiftDown()):
            self.__onRenameGroup(None)
Exemple #10
0
    def __createGuiElements(self):
        mainSizer = wx.FlexGridSizer(cols=2, rows=1, vgap=0, hgap=0)
        mainSizer.AddGrowableCol(1)
        mainSizer.AddGrowableRow(0)

        #
        # Controls for groups
        groupsSizer = wx.FlexGridSizer(cols=1, rows=0, vgap=0, hgap=0)
        groupsSizer.AddGrowableCol(0)
        groupsSizer.AddGrowableRow(0)

        self._groups = wx.TreeCtrl(
            self,
            style=wx.TR_HAS_BUTTONS | wx.TR_EDIT_LABELS | wx.SUNKEN_BORDER)
        self._groups.SetMinSize((200, 200))

        self._imagelist = SafeImageList(ICON_WIDTH, ICON_HEIGHT)
        self._groups.AssignImageList(self._imagelist)

        imagesDir = getImagesDir()

        # Buttons for groups
        groupButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add a group
        self.addGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png"))
        )
        self.addGroupBtn.SetToolTip(_(u"Add new group"))
        self.addGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onAddGroup)

        # Remove a group
        self.removeGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        self.removeGroupBtn.SetToolTip(_(u"Remove group"))
        self.removeGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onRemoveGroup)

        # Rename a group
        self.renameGroupBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "pencil.png"))
        )
        self.renameGroupBtn.SetToolTip(_(u"Rename group"))
        self.renameGroupBtn.Bind(wx.EVT_BUTTON, handler=self.__onRenameGroup)

        groupButtonsSizer.Add(self.addGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(self.removeGroupBtn, flag=wx.ALL, border=0)
        groupButtonsSizer.Add(self.renameGroupBtn, flag=wx.ALL, border=0)

        groupsSizer.Add(self._groups, 1, wx.RIGHT | wx.EXPAND, border=2)
        groupsSizer.Add(groupButtonsSizer, 1, wx.RIGHT | wx.EXPAND, border=2)

        #
        # Controls for icons in the group
        iconsSizer = wx.FlexGridSizer(cols=1, rows=0, vgap=0, hgap=0)
        iconsSizer.AddGrowableRow(0)
        iconsSizer.AddGrowableCol(0)

        self._iconsList = IconListCtrl(self, True)
        self._iconsList.SetMinSize((200, 150))

        # Buttons for icons in the group
        iconsButtonsSizer = wx.BoxSizer(wx.HORIZONTAL)

        # Add icons
        self.addIconsBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "add.png"))
        )
        self.addIconsBtn.SetToolTip(_(u"Add icons"))
        self.addIconsBtn.Bind(wx.EVT_BUTTON, handler=self.__onAddIcons)

        # Remove icons
        self.removeIconsBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "remove.png"))
        )
        self.removeIconsBtn.SetToolTip(_(u"Remove selected icons"))
        self.removeIconsBtn.Bind(wx.EVT_BUTTON, handler=self.__onRemoveIcons)

        # Set icon as group cover
        self.setCoverBtn = wx.BitmapButton(
            self,
            bitmap=wx.Bitmap(os.path.join(imagesDir, "picture.png"))
        )
        self.setCoverBtn.SetToolTip(_(u"Set icon as group cover"))
        self.setCoverBtn.Bind(wx.EVT_BUTTON, handler=self.__onSetCover)

        iconsButtonsSizer.Add(self.addIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(self.removeIconsBtn, flag=wx.ALL, border=0)
        iconsButtonsSizer.Add(self.setCoverBtn, flag=wx.ALL, border=0)

        iconsSizer.Add(self._iconsList, 1, wx.LEFT | wx.EXPAND, border=2)
        iconsSizer.Add(iconsButtonsSizer, 1, wx.LEFT | wx.EXPAND, border=2)

        # Main sizer
        mainSizer.Add(groupsSizer, 1, wx.ALL | wx.EXPAND, border=0)
        mainSizer.Add(iconsSizer, 1, wx.ALL | wx.EXPAND, border=0)

        self.SetSizer(mainSizer)
        self.Layout()
Exemple #11
0
class IconsPanel(wx.Panel):
    """
    Class of the panel in the "Icon" tab.
    """
    def __init__(self, parent):
        super(IconsPanel, self).__init__(parent)

        self._iconsCollections = [
            IconsCollection(path) for path in getIconsDirList()
        ]
        self.__createGui()

        self.__appendGroups()
        self.groupCtrl.SetSelection(0)
        self.__switchToCurrentGroup()

    def __createGui(self):
        self.iconsList = IconListCtrl(self)
        self.iconsList.SetMinSize((200, 150))

        # Control for selection icons group
        self.groupCtrl = wx.combo.BitmapComboBox(self, style=wx.CB_READONLY)
        self.groupCtrl.Bind(wx.EVT_COMBOBOX, handler=self.__onGroupSelect)

        self.__layout()

    def __layout(self):
        iconSizer = wx.FlexGridSizer(rows=2)
        iconSizer.AddGrowableRow(1)
        iconSizer.AddGrowableCol(0)
        iconSizer.Add(self.groupCtrl, 1, wx.ALL | wx.EXPAND, 2)
        iconSizer.Add(self.iconsList, 1, wx.ALL | wx.EXPAND, 2)

        self.SetSizer(iconSizer)
        self.Layout()

    def __appendGroups(self):
        for n, collection in enumerate(self._iconsCollections):
            # First None is root directory
            for group in [None] + sorted(collection.getGroups(),
                                         key=self._localize):
                # Get group name
                if group is None:
                    title = _(u'Not in groups')
                else:
                    title = self._localize(group)

                if n != 0:
                    title += u' *'
                # Every item has tuple (collection index, group name)
                self.groupCtrl.Append(title, self._getCover(collection, group),
                                      (n, group))

    def _getImageForGroup(self, fname):
        neww = ICON_WIDTH
        newh = ICON_HEIGHT + 2

        wx.Log_EnableLogging(False)
        image = wx.Image(fname)
        wx.Log_EnableLogging(True)

        if not image.IsOk():
            print _(u'Invalid icon file: {}').format(fname)
            return wx.NullBitmap

        posx = (neww - image.Width) / 2
        posy = (newh - image.Height) / 2
        image.Resize((neww, newh), (posx, posy), 255, 255, 255)

        return wx.BitmapFromImage(image)

    def _getCover(self, collection, groupname):
        """
        Return bitmap for combobox item
        """
        fname = collection.getCover(groupname)
        if fname is not None:
            return self._getImageForGroup(fname)

        return wx.NullBitmap

    def _getRootCover(self):
        """
        Return bitmap for combobox item
        """
        # fname = self._iconsCollections[0].getCover (None)
        fname = None
        for collection in self._iconsCollections:
            cover = collection.getCover(None)
            if cover is not None:
                fname = cover

        if fname is not None:
            return self._getImageForGroup(fname)

        return wx.NullBitmap

    def __onGroupSelect(self, event):
        self.__switchToCurrentGroup()

    def __getCurrentIcons(self):
        index, groupname = self.groupCtrl.GetClientData(
            self.groupCtrl.GetSelection())

        icons = self._iconsCollections[index].getIcons(groupname)
        icons.sort()

        return icons

    def __switchToCurrentGroup(self):
        icons = self.__getCurrentIcons()
        icons.sort(key=os.path.basename)
        self.iconsList.setIconsList(icons)

    def _localize(self, groupname):
        name = _(groupname)
        return name.capitalize()