Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add filter to FileDialog Lbrary entry #4

Closed
sonnyp opened this issue Nov 26, 2023 · 7 comments · Fixed by #60
Closed

Add filter to FileDialog Lbrary entry #4

sonnyp opened this issue Nov 26, 2023 · 7 comments · Fixed by #60
Labels
good first issue Good for newcomers

Comments

@sonnyp
Copy link
Contributor

sonnyp commented Nov 26, 2023

We should demonstrate the usage of filter in the Open File library entry

  text_files = gtk_file_filter_new ();
  gtk_file_filter_set_name (text_files, _("Text Files"));
  gtk_file_filter_add_mime_type (text_files, "text/plain");
  gtk_file_filter_add_mime_type (text_files, "application/x-zerosize");
  gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (native), g_object_ref (text_files));

@sonnyp sonnyp added help wanted Extra attention is needed good first issue Good for newcomers labels Nov 26, 2023
@JusteenR
Copy link

Hi @sonnyp I would like to work on this issue. If you could assign me to it an provide an additional context you have that would be great.

@sonnyp
Copy link
Contributor Author

sonnyp commented Nov 26, 2023

In Workbench Library, there is a entry named ""Open File"

We should demonstrate the usage of filters so that only one type of file can be selected.

HEre is an example

  const filter = Gtk.FileFilter.new();
  filter.set_name("Text Files");
  filter.add_mime_type("text/*");
  const filters = new Gio.ListStore();
  filters.append(filter);

  const file_dialog = new Gtk.FileDialog({ filters });

@sonnyp sonnyp removed the help wanted Extra attention is needed label Nov 26, 2023
@sonnyp sonnyp transferred this issue from workbenchdev/Workbench Dec 9, 2023
@Sahil-Shadwal
Copy link
Contributor

Hey @sonnyp can you tell me the expected behavior of Open File cause it is showing error when i select open file
image
and open multiple files just logs the number of file selected .

@sonnyp
Copy link
Contributor Author

sonnyp commented Jan 13, 2024

ha yes - I'm aware of this bug might be a good idea to fix it first

The problem is that in the Flatpak sandbox GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_DOWNLOAD) returns NULL

If you like you can send a PR that removes initial_folder and default_dir

@Sahil-Shadwal
Copy link
Contributor

Sahil-Shadwal commented Jan 14, 2024

Removed initial_folder and default_folder. https://gist.github.com/Sahil-Shadwal/6d63af8c237bf069e4ed7af7026a5790
Screenshot from 2024-01-14 16-41-56

@Sahil-Shadwal
Copy link
Contributor

So, should i make PR first and get my code reviewed or after ?

@Sahil-Shadwal
Copy link
Contributor

hey do i need to add more filters ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants