xaizek / vide (License: GPLv2+) (since 2018-12-07)
Graphical predecessor of vifm that uses GTK+.
<root> / src / view_dialog.c (6b43411e40bca30ee90ec100a30b8c69811e7b2e) (2,841B) (mode 100644) [raw]
/* vide
 * Copyright (C) 2000 Ken Steen.
 *
 * This program 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.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 */


#include <stdio.h>
#include "vide.h"

void
close_cb (GtkWidget * widget, GtkWidget * dialog)
{
  gtk_widget_destroy (dialog);
}

static void
key_press_cb (GtkWidget * widget, GdkEventKey * event, gpointer data)
{
  if (event->keyval == GDK_Escape)
    close_cb (NULL, widget);
}

void
create_view_file_dialog (gchar * filename)
{
  FILE *f;
  GtkWidget *dialog;
  GtkWidget *dialog_vbox;
  GtkWidget *action_area;
  GtkWidget *table;
  GtkWidget *text_area;
  GtkWidget *scrollbar;
  gchar text[MAX_LEN];

  if ((f = fopen (filename, "r")) == NULL)
    {
      return;
    }

  dialog = gtk_dialog_new ();
  dialog_vbox = GTK_DIALOG (dialog)->vbox;
  action_area = GTK_DIALOG (dialog)->action_area;

  gtk_window_set_title (GTK_WINDOW (dialog), filename);
  gtk_container_set_border_width (GTK_CONTAINER (dialog_vbox), 5);
  gtk_container_set_border_width (GTK_CONTAINER (action_area), 5);
  gtk_box_set_spacing (GTK_BOX (dialog_vbox), 5);
  gtk_box_set_homogeneous (GTK_BOX (action_area), TRUE);
  gtk_signal_connect (GTK_OBJECT (dialog), "key_press_event",
		      GTK_SIGNAL_FUNC (key_press_cb), NULL);

  table = gtk_table_new (1, 2, FALSE);
  gtk_widget_set_usize (table, 500, 400);
  gtk_box_pack_start (GTK_BOX (dialog_vbox), table, TRUE, TRUE, FALSE);
  gtk_widget_show (table);

  text_area = gtk_text_new (NULL, NULL);
  gtk_text_set_editable (GTK_TEXT (text_area), FALSE);
  gtk_text_set_word_wrap (GTK_TEXT (text_area), TRUE);
  gtk_table_attach (GTK_TABLE (table), text_area, 0, 1, 0, 1,
		    GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK,
		    0, 0);
  gtk_widget_show (text_area);

  scrollbar = gtk_vscrollbar_new (GTK_TEXT (text_area)->vadj);
  gtk_table_attach (GTK_TABLE (table), scrollbar, 1, 2, 0, 1,
		    GTK_FILL, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 0);
  gtk_widget_show (scrollbar);

  add_button (action_area, "Close", FALSE, 5, close_cb, dialog);

  while (fgets (text, sizeof (text), f) != NULL)
    gtk_text_insert (GTK_TEXT (text_area), NULL, NULL, NULL, text,
		     strlen (text));

  fclose (f);

  gtk_widget_show (dialog);
}
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vide

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vide

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master