Sha256: bad94e5fab2af63164893f58b765d3444cb7fdf73448948cd92fd594e96d33a4

Contents?: true

Size: 2 KB

Versions: 1

Compression:

Stored size: 2 KB

Contents

# frozen_string_literal: true

# Copyright (C) 2004-2006 Laurent Sansonetti
#
# Alexandria 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 2 of the
# License, or (at your option) any later version.
#
# Alexandria 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 Alexandria; see the file COPYING.  If not,
# write to the Free Software Foundation, Inc., 51 Franklin Street,
# Fifth Floor, Boston, MA 02110-1301 USA.

module Alexandria
  module UI
    class SmartLibraryPropertiesDialog < SmartLibraryPropertiesDialogBase
      include GetText
      GetText.bindtextdomain(Alexandria::TEXTDOMAIN, charset: 'UTF-8')

      def initialize(parent, smart_library)
        super(parent)

        add_buttons([Gtk::Stock::CANCEL, :cancel],
                    [Gtk::Stock::SAVE, :ok])

        self.title = _("Properties for '%s'") % smart_library.name
        # FIXME: Should accept just :cancel
        self.default_response = Gtk::ResponseType::CANCEL

        show_all
        smart_library.rules.each { |x| insert_new_rule(x) }
        update_rules_header_box(smart_library.predicate_operator_rule)

        while (response = run) != :cancel
          if response == :help
            Alexandria::UI.display_help(self, 'edit-smart-library')
          elsif response == :ok
            if user_confirms_possible_weirdnesses_before_saving?
              smart_library.rules = smart_library_rules
              smart_library.predicate_operator_rule =
                predicate_operator_rule
              smart_library.save
              yield(smart_library)
              break
            end
          end
        end

        destroy
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alexandria-book-collection-manager-0.7.2 lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb