# gtk_combo_box_text.py # # Copyright 2021 James Westman # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 3 of the # License, or (at your option) any later version. # # This file 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 # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this program. If not, see . # # SPDX-License-Identifier: LGPL-3.0-or-later from .common import * from .contexts import ValueTypeCtx from .gobject_object import ObjectContent, validate_parent_type from .values import StringValue class Item(AstNode): grammar = [ Optional([UseIdent("name"), ":"]), StringValue, ] @property def name(self) -> str: return self.tokens["name"] @property def value(self) -> StringValue: return self.children[StringValue][0] @validate("name") def unique_in_parent(self): if self.name is not None: self.validate_unique_in_parent( f"Duplicate item '{self.name}'", lambda x: x.name == self.name ) class ExtComboBoxItems(AstNode): grammar = [ Keyword("items"), "[", Delimited(Item, ","), "]", ] @validate("items") def container_is_combo_box_text(self): validate_parent_type(self, "Gtk", "ComboBoxText", "combo box items") @validate("items") def unique_in_parent(self): self.validate_unique_in_parent("Duplicate items block") @completer( applies_in=[ObjectContent], applies_in_subclass=("Gtk", "ComboBoxText"), matches=new_statement_patterns, ) def items_completer(ast_node, match_variables): yield Completion("items", CompletionItemKind.Snippet, snippet="items [$0]")