How to Install and Uninstall perl-Gtk3-SimpleList Package on openSuSE Tumbleweed

Last updated: May 17,2024

1. Install "perl-Gtk3-SimpleList" package

Please follow the instructions below to install perl-Gtk3-SimpleList on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Gtk3-SimpleList

2. Uninstall "perl-Gtk3-SimpleList" package

This is a short guide on how to uninstall perl-Gtk3-SimpleList on openSuSE Tumbleweed:

$ sudo zypper remove perl-Gtk3-SimpleList

3. Information about the perl-Gtk3-SimpleList package on openSuSE Tumbleweed

Information for package perl-Gtk3-SimpleList:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Gtk3-SimpleList
Version : 0.21-3.2
Arch : noarch
Vendor : openSUSE
Installed Size : 57.4 KiB
Installed : No
Status : not installed
Source package : perl-Gtk3-SimpleList-0.21-3.2.src
Upstream URL : https://metacpan.org/release/Gtk3-SimpleList
Summary : Simple interface to Gtk3's complex MVC list widget
Description :
Gtk3 has a powerful, but complex MVC (Model, View, Controller) system used
to implement list and tree widgets. Gtk3::SimpleList automates the complex
setup work and allows you to treat the list model as a more natural list of
lists structure.
After creating a new Gtk3::SimpleList object with the desired columns you
may set the list data with a simple Perl array assignment. Rows may be
added or deleted with all of the normal array operations. You can treat the
'data' member of the list simplelist object as an array reference, and
manipulate the list data with perl's normal array operators.
A mechanism has also been put into place allowing columns to be Perl
scalars. The scalar is converted to text through Perl's normal mechanisms
and then displayed in the list. This same mechanism can be expanded by
defining arbitrary new column types before calling the new function.