summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 801206e)
raw | patch | inline | side by side (parent: 801206e)
author | joncruz <joncruz@users.sourceforge.net> | |
Mon, 27 Feb 2006 17:05:39 +0000 (17:05 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Mon, 27 Feb 2006 17:05:39 +0000 (17:05 +0000) |
src/ui/previewholder.cpp | patch | blob | history | |
src/ui/previewholder.h | patch | blob | history |
index 4daea0f961a9be0c79e7de9f562f44450ff3017d..cc2339c9cf3f7dba860d7867a9125d413a34b7bc 100644 (file)
--- a/src/ui/previewholder.cpp
+++ b/src/ui/previewholder.cpp
void PreviewHolder::addPreview( Previewable* preview )
{
items.push_back(preview);
-
int i = items.size() - 1;
+
if ( _view == VIEW_TYPE_LIST ) {
Gtk::Widget* label = manage(preview->getPreview(PREVIEW_STYLE_BLURB, VIEW_TYPE_LIST, _baseSize));
Gtk::Widget* thing = manage(preview->getPreview(PREVIEW_STYLE_PREVIEW, VIEW_TYPE_LIST, _baseSize));
_insides->attach( *label, 1, 2, i, i+1, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK );
} else {
Gtk::Widget* thing = manage(items[i]->getPreview(PREVIEW_STYLE_PREVIEW, VIEW_TYPE_GRID, _baseSize));
- int width = _baseSize == Gtk::ICON_SIZE_MENU ? COLUMNS_FOR_SMALL : COLUMNS_FOR_LARGE;
- if ( _prefCols > 0 ) {
- width = _prefCols;
- }
+
+ int width = 1;
+ int height = 1;
+ calcGridSize( thing, items.size(), width, height );
int col = i % width;
int row = i / width;
+
+ if ( i < 10 ) {
+ g_message( "i:%d width:%d height:%d prop cols:%d", i, width, height, (int)_insides->property_n_columns() );
+ }
+
if ( col == 0 ) {
// we just started a new row
_insides->resize( row + 1, width );
+ } else if ( _insides && width > (int)_insides->property_n_columns() ) {
+ _insides->resize( height, width );
}
_insides->attach( *thing, col, col+1, row, row+1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND );
}
// g_message(" items:%d", (int)items.size());
}
+void PreviewHolder::calcGridSize( const Gtk::Widget* thing, int itemCount, int& width, int& height )
+{
+ width = itemCount;
+ height = 1;
+
+ if ( _anchor == Gtk::ANCHOR_SOUTH || _anchor == Gtk::ANCHOR_NORTH ) {
+ Gtk::Requisition req = _scroller->size_request();
+ int currW = _scroller->get_width();
+ if ( currW > req.width ) {
+ req.width = currW;
+ }
+
+ Gtk::HScrollbar* hs = dynamic_cast<Gtk::ScrolledWindow*>(_scroller)->get_hscrollbar();
+ if ( hs ) {
+ Gtk::Requisition scrollReq = hs->size_request();
+
+ // the +8 is a temporary hack
+ req.height -= scrollReq.height + 8;
+ }
+
+ Gtk::Requisition req2 = thing->size_request();
+
+ int h2 = req.height / req2.height;
+ int w2 = req.width / req2.width;
+ width = (itemCount + (h2 - 1)) / h2;
+ if ( width < w2 ) {
+ width = w2;
+ }
+ } else {
+ width = _baseSize == Gtk::ICON_SIZE_MENU ? COLUMNS_FOR_SMALL : COLUMNS_FOR_LARGE;
+ if ( _prefCols > 0 ) {
+ width = _prefCols;
+ }
+ height = (itemCount + (width - 1)) / width;
+ if ( height < 1 ) {
+ height = 1;
+ }
+ }
+}
+
void PreviewHolder::rebuildUI()
{
_scroller->remove();
} else {
int col = 0;
int row = 0;
- int width = items.size();
+ int width = 2;
int height = 1;
for ( unsigned int i = 0; i < items.size(); i++ ) {
Gtk::Widget* thing = manage(items[i]->getPreview(PREVIEW_STYLE_PREVIEW, _view, _baseSize));
if ( !_insides ) {
- if ( _anchor == Gtk::ANCHOR_SOUTH || _anchor == Gtk::ANCHOR_NORTH ) {
- // pad on out
- Gtk::Requisition req = _scroller->size_request();
-
- //Gtk::VScrollbar* vs = dynamic_cast<Gtk::ScrolledWindow*>(_scroller)->get_vscrollbar();
- Gtk::HScrollbar* hs = dynamic_cast<Gtk::ScrolledWindow*>(_scroller)->get_hscrollbar();
- if ( hs ) {
- Gtk::Requisition scrollReq = hs->size_request();
-
- // the +8 is a temporary hack
- req.height -= scrollReq.height + 8;
- }
-
- Gtk::Requisition req2 = thing->size_request();
-
- int h2 = req.height / req2.height;
- int w2 = req.width / req2.width;
- if ( (h2 > 1) && (w2 < (int)items.size()) ) {
- width = (items.size() + (h2 - 1)) / h2;
- }
-
- } else {
- width = _baseSize == Gtk::ICON_SIZE_MENU ? COLUMNS_FOR_SMALL : COLUMNS_FOR_LARGE;
- if ( _prefCols > 0 ) {
- width = _prefCols;
- }
- height = (items.size() + (width - 1)) / width;
- if ( height < 1 ) {
- height = 1;
- }
- }
+ calcGridSize( thing, items.size(), width, height );
_insides = manage(new Gtk::Table( height, width ));
}
diff --git a/src/ui/previewholder.h b/src/ui/previewholder.h
index 1be306ba4f289f3abde36c52704207d8ea1d3d7c..d165e5bf93b3f3dd4531bfc845902f6a2ecfb176 100644 (file)
--- a/src/ui/previewholder.h
+++ b/src/ui/previewholder.h
private:
void rebuildUI();
+ void calcGridSize( const Gtk::Widget* thing, int itemCount, int& width, int& height );
std::vector<Previewable*> items;
Gtk::Bin *_scroller;