GImageView is a GTK+ based image viewer which supports tabbed browsing, thumbnail table views, directory tree views and drag and drop. It also support movies using the Xine library and MPlayer, and supports images in compressed archive formats.
Revision | 6655aad675a93631c7b80907b3ed0e8c994df452 (tree) |
---|---|
Time | 2009-01-13 14:44:08 |
Author | makeinu <makeinu@aeae...> |
Commiter | makeinu |
Removed HACKING.
git-svn-id: https://gtkmmviewer.svn.sourceforge.net/svnroot/gtkmmviewer/gimageview/trunk@1210 aeae0eed-423c-0410-9251-95fb8af3d19f
@@ -1,5 +1,9 @@ | ||
1 | 1 | 2009-01-13 Takuro Ashie <ashie@homa.ne.jp> |
2 | 2 | |
3 | + * HACKING: Removed. Obsolete. | |
4 | + | |
5 | +2009-01-13 Takuro Ashie <ashie@homa.ne.jp> | |
6 | + | |
3 | 7 | * src/gimv_image_win.c: Fix a compile error (without libexif). |
4 | 8 | |
5 | 9 | 2009-01-13 Takuro Ashie <ashie@homa.ne.jp> |
@@ -1,204 +0,0 @@ | ||
1 | -############################################################################### | |
2 | -# # | |
3 | -# Object List (A to Z) # | |
4 | -# # | |
5 | -############################################################################### | |
6 | - | |
7 | - | |
8 | -Objects without "Gimv" prefix will be replaced to new implementation. | |
9 | - | |
10 | - | |
11 | -* Model objects | |
12 | - | |
13 | - FilesLoader : Load file list and select window type to open it. | |
14 | - (will be replaced to GimvFilesLoader or GimvDir) | |
15 | - FRArchive : Base class of Archiver. | |
16 | - (will be replaced to GimvArchive (inherits GimvDir?)) | |
17 | - FRCommand : Command arguments manager to execute external | |
18 | - command. | |
19 | - FRProccess : External process manager. | |
20 | - (will be replaced to GimvProcess which will be | |
21 | - developed at testgimvmplayer package) | |
22 | - GimvAnim : Animation image which inherits GimvImage. | |
23 | - GimvComment : Additional comments for an image. | |
24 | - (known as files under ~/.gimv/comment/) | |
25 | - GimvDuplFinder : Duplicated images finder. | |
26 | - GimvImage : Wrapper object for backend image library. | |
27 | - GimvImageInfo : Information about image. In the feature, this class | |
28 | - may inherit GimvFile class. | |
29 | - GimvImageLoader : Image loader. | |
30 | - GimvImageSaver : Image saver. | |
31 | - GimvIO : Base class of I/O streamer. | |
32 | - GimvThumb : Thumbnail. | |
33 | - GimvSlideShow : Slidshow. | |
34 | - Prefs : Contain whole application preference. | |
35 | - | |
36 | - | |
37 | -* Model objects (embeded modules) | |
38 | - | |
39 | - GimvIOFile : UNIX file stream. | |
40 | - GimvIOMem : Wrapper for memory. | |
41 | - | |
42 | - | |
43 | -* Common widgets | |
44 | - | |
45 | - GimvCellRendererPixmap : Cell renderer for GdkPixmap mainly used by | |
46 | - GtkTreeView (for Gtk+2 only). | |
47 | - GimvDList : Double stack list widget. | |
48 | - (The code is still durty) | |
49 | - GimvEList : Editable list widget. | |
50 | - (The code is still durty) | |
51 | - GimvHPaned : Special horizontal paned widget. | |
52 | - GimvNavWin : Navigate window for large image. | |
53 | - GimvPaned : Special paned widget. | |
54 | - GimvScrolled : Base container widget for scrollable widget. | |
55 | - GimvVPaned : Special vertical widget. | |
56 | - GimvZAlbum : Thumbnail table widget which inherits GimvZList. | |
57 | - GimvZList : Base class for simple icon list widget. | |
58 | - | |
59 | - | |
60 | -* Special purpose widgets. | |
61 | - | |
62 | - DirView : Directory tree viewer. | |
63 | - ExifViewer : EXIF viewer (will be replaced to libexif-gtk). | |
64 | - GimvCommentView : Viewer and editor for GimvComment. | |
65 | - GimvDuplWin : Viewer for duplicated images. | |
66 | - GimvImageView : Contaienr widget for content viewer. | |
67 | - GimvImageWin : Image window which contains GimvImageView. | |
68 | - GimvThumbWin : Thumbnail window which contains DirView, | |
69 | - GimvCommentView, GimvImageView, ThumbView. | |
70 | - GtkProp : File property dialog. | |
71 | - TextViewer : Text vier (will be integrated to GimvImageView). | |
72 | - ThumbnailView : Container object for thumbnail view. | |
73 | - | |
74 | - | |
75 | - | |
76 | - | |
77 | -############################################################################### | |
78 | -# # | |
79 | -# Function groups / Resources groups (Singleton?) # | |
80 | -# # | |
81 | -############################################################################### | |
82 | - | |
83 | - | |
84 | -* misc utilities | |
85 | - | |
86 | - ArgumentParser : Command line argument parser. | |
87 | - (will be reimplemeted as object) | |
88 | - AutoCompl : For auto completion of filename. | |
89 | - Charset : Character set conversion. | |
90 | - Cursor : Cursor collection. | |
91 | - Dither : Dithering (will be integrated to GimvImage). | |
92 | - DnD : Drag and Drop related functions. | |
93 | - FileUtil : File related utility. | |
94 | - GFileUtil : File related utility depended on GTK+. | |
95 | - GimvIconStock : Icon collection. | |
96 | - GimvMimeTypes : Mime type collection. | |
97 | - GimvMarshal : Custom signal marshallers. | |
98 | - GimvPlugin : Plugin related functions. | |
99 | - GimvPrefsUIUtils : Utility for preference UI. | |
100 | - GimvThumbCache : Thumbnail cache manager. | |
101 | - Gtk2Compat : For compatibilty between Gtk+-1.2 and Gtk+-2.0. | |
102 | - GtkUtils : Misc utilities depended on GTK+. | |
103 | - GimvHelp : Infomation widget adn help related functions. | |
104 | - (Will be reimplemented as object) | |
105 | - Intl : Gettext related macros. | |
106 | - Menu : Convinient functions for GtkMenu and related classes. | |
107 | - MD5 : MD5 support functions. | |
108 | - PixbufUtils : GdkPixbuf utilities. | |
109 | - (will be integrated to GimvImage) | |
110 | - Utils : Misc utilities | |
111 | - | |
112 | - | |
113 | -* Embeded modules | |
114 | - | |
115 | - CompareFileSize : Compare file size of image (for GimvDuplFinder). | |
116 | - CompareMD5 : Compare images by MD5 (for GimcDuplFinder). | |
117 | - CompareSimilar : Compare similarity of images (for GimvDuplFinder). | |
118 | - ImageViewDraw : GdkPixmap viewer. | |
119 | - Japanese : Japanese related functions used by Charset. | |
120 | - ThumbnailViewAlbum : Default thumbnail view mode. | |
121 | - | |
122 | - | |
123 | - | |
124 | -############################################################################### | |
125 | -# # | |
126 | -# Included libraries # | |
127 | -# # | |
128 | -############################################################################### | |
129 | - | |
130 | - | |
131 | -libintl : Gettext (message translation). | |
132 | -libexif : EXIF support. | |
133 | -dllloader: Win32 DLL(Dynamic Link Library) support. | |
134 | - | |
135 | - | |
136 | - | |
137 | -############################################################################### | |
138 | -# # | |
139 | -# Loadable Modules # | |
140 | -# # | |
141 | -############################################################################### | |
142 | - | |
143 | - | |
144 | -* Archiver | |
145 | - | |
146 | - LhaExt: External LHA arcvhier. | |
147 | - RarExt: External RAR archiver. | |
148 | - TarExt: External Tar archiver. | |
149 | - ZipExt: External ZIP arcvhier. | |
150 | - | |
151 | - | |
152 | -* Image Loader | |
153 | - | |
154 | - ImlibLoader: Imlib image loader. | |
155 | - JPEGLoader: JPEG | |
156 | - MagLoader: MAG. | |
157 | - PCXLoader: PCX. | |
158 | - PixbufLoader: GdkPixbuf image loader. | |
159 | - PNGLoader: PNG | |
160 | - SPILoader: Susie plugin support (include archiver). | |
161 | - SVGLoader: SVG. | |
162 | - TGALoader: Targa. | |
163 | - WMFLoader: Windows Meta File. | |
164 | - XBMLoader: XBM. | |
165 | - XCFLoader: Image format of GIMP. | |
166 | - XVPICSLoader: XV thumbnail image. | |
167 | - | |
168 | - | |
169 | -* Image Saver | |
170 | - | |
171 | - PNGSaver: PNG. | |
172 | - PNMSaver: PNM. | |
173 | - XVPICSSaver: XV thumbnail image. | |
174 | - | |
175 | - | |
176 | -* Image View Embeder | |
177 | - | |
178 | - ImageViewXine: Xine movie viewer. | |
179 | - ImageViewMPlayer: MPlayer movie viewer and image loader. | |
180 | - | |
181 | - | |
182 | -* I/O Streamer | |
183 | - | |
184 | - GimvBZIO: BZIP streamer. | |
185 | - GimvGZipIO: GZIP streamer. | |
186 | - | |
187 | - | |
188 | -* Thumbnail Cache Loader | |
189 | - | |
190 | - EE: Electric Eyes. | |
191 | - Thumb: GImageView. | |
192 | - GQview: GQview. | |
193 | - KonqOld: Old konqueror. | |
194 | - Konq: Konqeror. | |
195 | - Nautilus: Nautilus-1.x | |
196 | - Nautilus2: Nautilus-2.0 | |
197 | - XVPICS: XV | |
198 | - | |
199 | - | |
200 | -* Thumbnail View Embeder | |
201 | - | |
202 | - DetailView: Detailed list view. | |
203 | - ListView: Icon list view. | |
204 | - ThumbTable: Old thumbnail view. |
@@ -12,8 +12,7 @@ endoc_DATA = \ | ||
12 | 12 | README \ |
13 | 13 | INSTALL \ |
14 | 14 | NEWS \ |
15 | - TODO \ | |
16 | - HACKING | |
15 | + TODO | |
17 | 16 | |
18 | 17 | EXTRA_DIST = \ |
19 | 18 | intltool-merge.in \ |