Git Product home page Git Product logo

Comments (3)

kasinadhsarma avatar kasinadhsarma commented on July 18, 2024 1

image
"Google is recommended as the best tutorial resource for learning GTK 4.0, according to some members. As I prepare for my application (which is currently private on GitHub: https://github.com/Exploit0xfffff/PenetrationApp), I am searching day and night for three specific background images and a search bar.

from gtk4pythontutorial.

Taiko2k avatar Taiko2k commented on July 18, 2024 1

How to do search bars?!

import gi
gi.require_version("Gtk", "4.0")
from gi.repository import Gtk, Gdk

FRUIT_COLORS = {
    "apple": "red",
    "banana": "yellow",
    "blueberry": "blue",
    "grape": "purple",
    "kiwi": "green",
    "lemon": "yellow",
    "mango": "orange",
    "orange": "orange",
    "peach": "pink",
    "strawberry": "red"
}

class FruitColorSearchApp(Gtk.Application):
    def __init__(self):
        super().__init__()

    def do_activate(self):
        self.window = Gtk.ApplicationWindow(application=self)
        self.window.set_title("Fruit Color Search")

        header = Gtk.HeaderBar()
        self.window.set_titlebar(header)

        # Create the search entry and connect its "search-changed" signal to the on_search_changed method
        self.search_entry = Gtk.SearchEntry()
        self.search_entry.connect("search-changed", self.on_search_changed)

        header.pack_start(self.search_entry)

        self.label = Gtk.Label()
        self.label.set_margin_top(50)
        self.label.set_margin_bottom(50)
        self.window.set_child(self.label)

        self.window.present()

    # Method to handle search changes in the search entry
    def on_search_changed(self, entry):
        query = entry.get_text().strip().lower()
        if query in FRUIT_COLORS:
            self.label.set_text(f"The color of {query} is {FRUIT_COLORS[query]}.")
        elif query == "":
            self.label.set_text("")
        else:
            self.label.set_text("Fruit not found. Please try again.")

if __name__ == "__main__":
    app = FruitColorSearchApp()
    app.run(None)

image

Oh ho ho its magic! 👏 👏

OK but like I don't know anything really you'll have to figure out anything further yourself.

from gtk4pythontutorial.

Taiko2k avatar Taiko2k commented on July 18, 2024

As I lamented, there aren't many tutorials out there. I'm not familiar with those topics myself either unfortunately.

from gtk4pythontutorial.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.