comparison src/typedefs.h @ 1453:bc3f5c0432f6

gint -> gboolean where applicable. The end (ouf!).
author zas_
date Mon, 16 Mar 2009 20:39:09 +0000
parents a6f9ba6fd751
children 25168240a247
comparison
equal deleted inserted replaced
1452:67b40740122e 1453:bc3f5c0432f6
468 468
469 HistMap *histmap; 469 HistMap *histmap;
470 470
471 gint ref; 471 gint ref;
472 gint version; /* increased when any field in this structure is changed */ 472 gint version; /* increased when any field in this structure is changed */
473 gint disable_grouping; 473 gboolean disable_grouping;
474 474
475 gint user_orientation; 475 gint user_orientation;
476 gint exif_orientation; 476 gint exif_orientation;
477 477
478 ExifData *exif; 478 ExifData *exif;
603 // FileViewType file_view_type; 603 // FileViewType file_view_type;
604 604
605 GtkWidget *file_view; 605 GtkWidget *file_view;
606 606
607 SortType sort_method; 607 SortType sort_method;
608 gint sort_ascend; 608 gboolean sort_ascend;
609 609
610 /* status bar */ 610 /* status bar */
611 611
612 GtkWidget *info_box; 612 GtkWidget *info_box;
613 GtkWidget *info_progress_bar; 613 GtkWidget *info_progress_bar;
706 706
707 FileData *dir_fd; 707 FileData *dir_fd;
708 GList *list; 708 GList *list;
709 709
710 SortType sort_method; 710 SortType sort_method;
711 gint sort_ascend; 711 gboolean sort_ascend;
712 712
713 /* func list */ 713 /* func list */
714 void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data); 714 void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
715 gpointer data_thumb_status; 715 gpointer data_thumb_status;
716 716
720 LayoutWindow *layout; 720 LayoutWindow *layout;
721 721
722 GtkWidget *popup; 722 GtkWidget *popup;
723 723
724 /* thumbs updates*/ 724 /* thumbs updates*/
725 gint thumbs_running; 725 gboolean thumbs_running;
726 ThumbLoader *thumbs_loader; 726 ThumbLoader *thumbs_loader;
727 FileData *thumbs_filedata; 727 FileData *thumbs_filedata;
728 728
729 /* marks */ 729 /* marks */
730 gint marks_enabled; 730 gboolean marks_enabled;
731 gint active_mark; 731 gint active_mark;
732 gint clicked_mark; 732 gint clicked_mark;
733 733
734 /* refresh */ 734 /* refresh */
735 gint refresh_idle_id; 735 gint refresh_idle_id;
741 struct _ViewFileInfoList 741 struct _ViewFileInfoList
742 { 742 {
743 FileData *click_fd; 743 FileData *click_fd;
744 FileData *select_fd; 744 FileData *select_fd;
745 745
746 gint thumbs_enabled; 746 gboolean thumbs_enabled;
747 747
748 gint select_idle_id; 748 gint select_idle_id;
749 }; 749 };
750 750
751 struct _IconData; 751 struct _IconData;
767 767
768 struct _IconData *focus_id; 768 struct _IconData *focus_id;
769 gint focus_row; 769 gint focus_row;
770 gint focus_column; 770 gint focus_column;
771 771
772 gint show_text; 772 gboolean show_text;
773 }; 773 };
774 774
775 struct _SlideShowData 775 struct _SlideShowData
776 { 776 {
777 ImageWindow *imd; 777 ImageWindow *imd;
787 FileData *slide_fd; 787 FileData *slide_fd;
788 788
789 guint slide_count; 789 guint slide_count;
790 gint timeout_id; 790 gint timeout_id;
791 791
792 gint from_selection; 792 gboolean from_selection;
793 793
794 void (*stop_func)(SlideShowData *, gpointer); 794 void (*stop_func)(SlideShowData *, gpointer);
795 gpointer stop_data; 795 gpointer stop_data;
796 796
797 gboolean paused; 797 gboolean paused;