*
*/
+#include "asset.h"
+#include "assets.h"
+#include "awindow.h"
+#include "awindowgui.h"
#include "edit.h"
#include "editpopup.h"
+#include "cache.h"
+#include "edl.h"
+#include "edlsession.h"
+#include "file.h"
#include "language.h"
+#include "localsession.h"
+#include "mainerror.h"
#include "mainsession.h"
#include "mwindow.h"
#include "mwindowgui.h"
#include "plugindialog.h"
+#include "preferences.h"
+#include "renderengine.h"
#include "resizetrackthread.h"
#include "track.h"
#include "tracks.h"
#include "trackcanvas.h"
-
+#include "transportque.h"
+#include "vframe.h"
+#include "vrender.h"
#include <string.h>
add_item(new EditPopupDeleteTrack(mwindow, this));
add_item(new EditPopupAddTrack(mwindow, this));
// add_item(new EditPopupTitle(mwindow, this));
+ EditSnapshot *edit_snapshot;
+ SnapshotSubMenu *snapshot_submenu;
+ add_item(edit_snapshot = new EditSnapshot(mwindow, this));
+ edit_snapshot->add_submenu(snapshot_submenu = new SnapshotSubMenu(edit_snapshot));
+ snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("png"), SNAPSHOT_PNG));
+ snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("jpeg"), SNAPSHOT_JPEG));
+ snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("tiff"), SNAPSHOT_TIFF));
resize_option = 0;
matchsize_option = 0;
}
int EditAttachEffect::handle_event()
{
dialog_thread->start_window(popup->track,
- 0,
- _(PROGRAM_NAME ": Attach Effect"),
- 0,
- popup->track->data_type);
+ 0, _(PROGRAM_NAME ": Attach Effect"),
+ 0, popup->track->data_type);
return 1;
}
}
-
-
EditPopupResize::EditPopupResize(MWindow *mwindow, EditPopup *popup)
: BC_MenuItem(_("Resize track..."))
{
}
-
-
-
-
EditPopupMatchSize::EditPopupMatchSize(MWindow *mwindow, EditPopup *popup)
: BC_MenuItem(_("Match output size"))
{
}
-
-
-
-
-
EditPopupDeleteTrack::EditPopupDeleteTrack(MWindow *mwindow, EditPopup *popup)
: BC_MenuItem(_("Delete track"))
{
}
-
-
-
-
EditPopupAddTrack::EditPopupAddTrack(MWindow *mwindow, EditPopup *popup)
: BC_MenuItem(_("Add track"))
{
}
-
-
-
-
EditPopupTitle::EditPopupTitle(MWindow *mwindow, EditPopup *popup)
: BC_MenuItem(_("User title..."))
{
+EditSnapshot::EditSnapshot(MWindow *mwindow, EditPopup *popup)
+ : BC_MenuItem(_("Snapshot..."))
+{
+ this->mwindow = mwindow;
+ this->popup = popup;
+}
+EditSnapshot::~EditSnapshot()
+{
+}
+
+SnapshotSubMenu::SnapshotSubMenu(EditSnapshot *edit_snapshot)
+{
+ this->edit_snapshot = edit_snapshot;
+}
+
+SnapshotSubMenu::~SnapshotSubMenu()
+{
+}
+
+SnapshotMenuItem::SnapshotMenuItem(SnapshotSubMenu *submenu, const char *text, int mode)
+ : BC_MenuItem(text)
+{
+ this->submenu = submenu;
+ this->mode = mode;
+}
+
+SnapshotMenuItem::~SnapshotMenuItem()
+{
+}
+
+int SnapshotMenuItem::handle_event()
+{
+ MWindow *mwindow = submenu->edit_snapshot->mwindow;
+ EDL *edl = mwindow->edl;
+ if( !edl->have_video() ) return 1;
+ Preferences *preferences = mwindow->preferences;
+ char filename[BCTEXTLEN];
+ static const char *exts[] = { "png", "jpg", "tif" };
+ time_t tt; time(&tt);
+ struct tm tm; localtime_r(&tt,&tm);
+ sprintf(filename,"%s/snap_%04d%02d%02d-%02d%02d%02d.%s",
+ preferences->snapshot_path, 1900+tm.tm_year,tm.tm_mon,tm.tm_mday,
+ tm.tm_hour,tm.tm_min,tm.tm_sec, exts[mode]);
+ int fw = edl->get_w(), fh = edl->get_h();
+ int fcolor_model = edl->session->color_model;
+ Asset *asset = new Asset(filename);
+ switch( mode ) {
+ case SNAPSHOT_PNG:
+ asset->format = FILE_PNG;
+ asset->png_use_alpha = 1;
+ break;
+ case SNAPSHOT_JPEG:
+ asset->format = FILE_JPEG;
+ asset->jpeg_quality = 90;
+ break;
+ case SNAPSHOT_TIFF:
+ asset->format = FILE_TIFF;
+ asset->tiff_cmodel = 0;
+ asset->tiff_compression = 0;
+ break;
+ }
+ asset->width = fw;
+ asset->height = fh;
+ asset->audio_data = 0;
+ asset->video_data = 1;
+ asset->video_length = 1;
+ asset->layers = 1;
+
+ File file;
+ int processors = preferences->project_smp + 1;
+ if( processors > 8 ) processors = 8;
+ file.set_processors(processors);
+ int ret = file.open_file(preferences, asset, 0, 1);
+ if( !ret ) {
+ file.start_video_thread(1, fcolor_model,
+ processors > 1 ? 2 : 1, 0);
+ VFrame ***frames = file.get_video_buffer();
+ VFrame *frame = frames[0][0];
+ TransportCommand command;
+ //command.command = audio_tracks ? NORMAL_FWD : CURRENT_FRAME;
+ command.command = CURRENT_FRAME;
+ command.get_edl()->copy_all(edl);
+ command.change_type = CHANGE_ALL;
+ command.realtime = 0;
+
+ RenderEngine render_engine(0, preferences, 0, 0);
+ CICache video_cache(preferences);
+ render_engine.set_vcache(&video_cache);
+ render_engine.arm_command(&command);
+
+ double position = edl->local_session->get_selectionstart(1);
+ int64_t source_position = (int64_t)(position * edl->get_frame_rate());
+ int ret = render_engine.vrender->process_buffer(frame, source_position, 0);
+ if( !ret )
+ ret = file.write_video_buffer(1);
+ file.close_file();
+ }
+ if( !ret ) {
+ asset->awindow_folder = AW_MEDIA_FOLDER;
+ mwindow->edl->assets->append(asset);
+ mwindow->awindow->gui->async_update_assets();
+ }
+ else {
+ eprintf("snapshot render failed");
+ asset->remove_user();
+ }
+ return 1;
+}
popup_w = w;
popup_h = h;
- for( int i = 0; i < 3; i++ ) column_bg[i] = 0;
- for( int i = 0; i < 4; i++ ) button_images[i] = 0;
- for( int i = 0; i < 5; i++ ) toggle_images[i] = 0;
+ for( int i=0; i<3; ++i ) column_bg[i] = 0;
+ for( int i=0; i<4; ++i ) button_images[i] = 0;
+ for( int i=0; i<5; ++i ) toggle_images[i] = 0;
column_sort_up = 0;
column_sort_dn = 0;
if( bg_pixmap ) delete bg_pixmap;
if( xscrollbar ) delete xscrollbar;
if( yscrollbar ) delete yscrollbar;
- for( int i = 0; i < 3; i++ ) delete column_bg[i];
- for( int i = 0; i < 4; i++ ) delete button_images[i];
- for( int i = 0; i < 5; i++ ) delete toggle_images[i];
+ for( int i=0; i<3; ++i ) delete column_bg[i];
+ for( int i=0; i<4; ++i ) delete button_images[i];
+ for( int i=0; i<5; ++i ) delete toggle_images[i];
if( column_sort_up ) delete column_sort_up;
if( column_sort_dn ) delete column_sort_dn;
int BC_ListBox::evaluate_query(char *string)
{
- for( int i = 0; i < data[search_column].size(); i++ ) {
+ for( int i=0; i<data[search_column].size(); ++i ) {
if( strcmp(string, data[search_column].get(i)->text) <= 0 &&
data[search_column].get(i)->searchable ) {
return i;
if( done ) {
// Deselect all
- for( int i = 0; i < data[0].total; i++ ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int i=0; i<data[0].total; ++i ) {
+ for( int j=0; j<columns; ++j ) {
if( data[j].values[i]->selected ) prev_selection = i;
data[j].values[i]->selected = 0;
}
// Select one
if( prev_selection != result )
selection_changed = 1;
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
data[j].values[result]->selected = 1;
}
center_selection(result);
{
if( !column_width && data ) {
int widest = 5, wd;
- for( int i = 0; i < data[0].total; i++ ) {
+ for( int i=0; i<data[0].total; ++i ) {
wd = get_text_w(data[0].values[i]);
if( wd > widest ) widest = wd;
}
{
if( is_popup ) {
if( use_button ) {
- for( int i = 0; i < 4; ++i ) {
+ for( int i=0; i<4; ++i ) {
button_images[i] = new BC_Pixmap(parent_window,
BC_WindowBase::get_resources()->listbox_button[i],
PIXMAP_ALPHA);
current_operation = NO_OPERATION;
}
- for( int i = 0; i < 3; i++ ) {
+ for( int i=0; i<3; ++i ) {
column_bg[i] = new BC_Pixmap(parent_window,
get_resources()->listbox_column[i],
PIXMAP_ALPHA);
}
- for( int i = 0; i < 5; i++ ) {
+ for( int i=0; i<5; ++i ) {
toggle_images[i] = new BC_Pixmap(parent_window,
get_resources()->listbox_expand[i],
PIXMAP_ALPHA);
int *next_text_y,
int top_level)
{
- for( int i = 0; i < data[0].size(); i++ ) {
+ for( int i=0; i<data[0].size(); ++i ) {
int current_text_y = 0;
int current_icon_x = 0;
int current_icon_y = 0;
// get maximum height of an icon
row_height = get_text_height(MEDIUMFONT);
if( temp_display_format == LISTBOX_ICON_LIST ) {
- for( int i = 0; i < data[0].size(); i++ ) {
+ for( int i=0; i<data[0].size(); ++i ) {
if( data[0].get(i)->icon ) {
if( data[0].get(i)->icon->get_h() > row_height )
row_height = data[0].get(i)->icon->get_h();
// Set up items which need autoplacement.
// Should fill icons down and then across
- for( int i = 0; i < data[0].size(); i++ ) {
+ for( int i=0; i<data[0].size(); ++i ) {
// Don't increase y unless the row requires autoplacing.
int total_autoplaced_columns = 0;
int next_text_x = 0;
row_ascent = row_descent = 0;
// row_height still holds icon max height
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *item = data[j].get(i);
if( item->autoplace_text ) {
display_format = LISTBOX_TEXT;
int widest = 0;
if( display_format == LISTBOX_ICONS ) {
- for( int i = 0; i < columns; i++ ) {
- for( int j = 0; j < data[i].total; j++ ) {
+ for( int i=0; i<columns; ++i ) {
+ for( int j=0; j<data[i].total; ++j ) {
int x1, x, y, w, h;
BC_ListBoxItem *item = data[i].values[j];
x1 = item->icon_x;
top_level = 1;
}
- for( int j = 0; j < (data ? data[master_column].total : 0); j++ ) {
+ for( int j=0; j<(data?data[master_column].total:0); ++j ) {
int x, y, w, h;
BC_ListBoxItem *item = data[master_column].values[j];
void BC_ListBox::collapse_recursive(ArrayList<BC_ListBoxItem*> *data,
int master_column)
{
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
if( item->get_sublist() && item->expand ) {
item->expand = 0;
int do_icons,
int do_text)
{
- for( int i = 0; i < data[0].total; i++ ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int i=0; i<data[0].total; ++i ) {
+ for( int j=0; j<columns; ++j ) {
if( do_icons ) data[j].values[i]->autoplace_icon = 1;
if( do_text ) data[j].values[i]->autoplace_text = 1;
}
void BC_ListBox::column_width_boundaries()
{
if( column_width ) {
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
if( column_width[i] < MIN_COLUMN_WIDTH )
column_width[i] = MIN_COLUMN_WIDTH;
}
}
else {
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
if( default_column_width[i] < MIN_COLUMN_WIDTH )
default_column_width[i] = MIN_COLUMN_WIDTH;
}
{
if( !data ) return 0;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
if( item->selected ) {
//printf("BC_ListBox::get_selection_recursive %d\n", __LINE__);
if( !data ) return 0;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*counter)++;
BC_ListBoxItem *item = data[master_column].values[i];
if( item->selected ) {
void BC_ListBox::delete_columns()
{
if( column_titles ) {
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
delete [] column_titles[i];
}
delete [] column_titles;
delete_columns();
if( column_titles ) {
this->column_titles = new char*[columns];
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
this->column_titles[i] = new char[strlen(column_titles[i]) + 1];
strcpy(this->column_titles[i], column_titles[i]);
}
}
if( column_width ) {
this->column_width = new int[columns];
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
this->column_width[i] = column_width[i];
}
}
// Scan backwards to item pointer. Then count visible items to get
// destination. No wraparound.
do {
- for( int i = data[master_column].total - 1; i >= 0; i-- ) {
+ for( int i=data[master_column].total-1; i>=0; --i ) {
BC_ListBoxItem *current_item = data[master_column].values[i];
if( current_item->get_sublist() &&
current_item->get_expand() ) {
if( *got_first ) {
(*counter)++;
if( (*counter) >= skip ) {
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 1;
(*got_second) = 1;
return item_to_index(this->data, current_item);
}
else {
if( current_item->selected ) {
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 0;
(*got_first) = 1;
(*counter)++;
(*got_first) = 1;
current_item = data[master_column].values[0];
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[0]->selected = 1;
(*got_second) = 1;
return item_to_index(this->data, current_item);
// Scan forwards to currently selected item pointer.
// Then count visible items to get destination. No wraparound.
do {
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *current_item = data[master_column].values[i];
// Select next item once the number items after the currently selected item
if( *got_first ) {
(*counter)++;
if( (*counter) >= skip ) {
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 1;
(*got_second) = 1;
return item_to_index(this->data, current_item);
else {
// Got currently selected item. Deselect it.
if( current_item->selected ) {
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 0;
(*got_first) = 1;
(*counter)++;
(*got_first) = 1;
current_item = data[master_column].values[0];
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[0]->selected = 1;
(*got_second) = 1;
}
int current_row = data[master_column].total - 1;
current_item = data[master_column].values[current_row];
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[current_row]->selected = 1;
(*got_second) = 1;
}
if( !data ) data = this->data;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*counter)++;
// Got it
view_w = popup_w - 4;
// Create scrollbars as needed
- for( int i = 0; i < 2; i++ ) {
+ for( int i=0; i<2; ++i ) {
if( w_needed > view_w ) {
need_xscroll = 1;
view_h = popup_h -
int x1, int y1, int x2, int y2)
{
int result = 0;
- for( int i = 0; i < data[master_column].total; i++ ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *item = data[j].values[i];
if( display_format == LISTBOX_ICONS ) {
int icon_x, icon_y, icon_w, icon_h;
int temp = -1;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
(*counter)++;
if( (*counter) == selection_number ) {
void BC_ListBox::move_selection(ArrayList<BC_ListBoxItem*> *dst,
ArrayList<BC_ListBoxItem*> *src)
{
- for( int i = 0; i < src[master_column].total; ) {
+ for( int i=0; i<src[master_column].total; ) {
BC_ListBoxItem *item = src[master_column].values[i];
// Move item to dst
if( item->selected ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
dst[j].append(src[j].values[i]);
src[j].remove_number(i);
}
if( !counter ) counter = &temp;
if( destination < 0 || destination >= data[master_column].total ) {
- for( int j = 0; j < columns; j++ ) {
- for( int i = 0; i < src[j].total; i++ ) {
+ for( int j=0; j<columns; ++j ) {
+ for( int i=0; i<src[j].total; ++i ) {
data[j].append(src[j].values[i]);
}
}
return 1;
}
else
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*counter)++;
if( (*counter) == destination ) {
- for( int j = 0; j < columns; j++ ) {
- for( int k = 0; k < src[j].total; k++ ) {
+ for( int j=0; j<columns; ++j ) {
+ for( int k=0; k<src[j].total; ++k ) {
data[j].insert(src[j].values[k], destination + k);
}
}
int temp = -1;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*counter)++;
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *new_item = data[j].values[i];
//printf("BC_ListBox::item_to_index 1 %d %d %p\n", j, i, new_item);
if( new_item == item ) {
{
int temp = -1;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*counter)++;
if( (*counter) == number ) {
return data[column].values[i];
// Icons are not treed
if( display_format == LISTBOX_ICONS ) {
- for( int j = data[master_column].total - 1; j >= 0; j-- ) {
+ for( int j=data[master_column].total-1; j>=0; --j ) {
int icon_x, icon_y, icon_w, icon_h;
int text_x, text_y, text_w, text_h;
BC_ListBoxItem *item = data[master_column].values[j];
(cursor_y > get_title_h() + LISTBOX_BORDER &&
cursor_y < gui->get_h())) ) {
// Search table for cursor obstruction
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
(*counter)++;
highlighted_ptr = 0;
highlighted_title = -1;
int redraw_toggles = 0;
- for( int i = 0; i < expanders.total; i++ )
+ for( int i=0; i<expanders.total; ++i )
expanders.values[i]->cursor_leave_event(&redraw_toggles);
draw_items(1);
int temp = -1;
if( !result ) result = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
(*result)++;
if( item->selected ) return (*result);
int temp = 0;
if( !result ) result = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*result)++;
if( data[master_column].values[i]->get_sublist() )
get_total_items(data[master_column].values[i]->get_sublist(),
top_level = 1;
}
- for( int i = data[master_column].total - 1; i >= 0; i-- ) {
+ for( int i=data[master_column].total-1; i>=0; --i ) {
BC_ListBoxItem *item = data[master_column].values[i];
(*result)++;
if( item->selected ) {
int temp = -1;
if( !current ) current = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
(*current)++;
if( (*current) >= start && (*current) < end ) {
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 1;
}
BC_ListBoxItem *item = data[master_column].values[i];
int temp = -1;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
(*counter)++;
if( (*counter) == selection_number ) {
// Get new value for selection
int selected = !item->selected;
// Set row
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = selected;
return 1;
}
void BC_ListBox::set_all_selected(ArrayList<BC_ListBoxItem*> *data, int value)
{
- for( int i = 0; i < data[master_column].total; i++ ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *item = data[j].values[i];
item->selected = value;
}
{
int temp = -1;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total && (*counter) != item_number; i++ ) {
+ for( int i=0; i<data[master_column].total&&(*counter)!=item_number; ++i ) {
(*counter)++;
if( (*counter) == item_number ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *item = data[j].values[i];
item->selected = value;
}
int result = 0;
if( !counter ) counter = &temp;
- for( int i = 0; i < data[master_column].total; i++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
BC_ListBoxItem *item = data[master_column].values[i];
(*counter)++;
if( (*counter) == selection_number && !item->selected ) {
result = 1;
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 1;
}
else
if( (*counter) != selection_number && item->selected ) {
result = 1;
- for( int j = 0; j < columns; j++ )
+ for( int j=0; j<columns; ++j )
data[j].values[i]->selected = 0;
}
if( item->get_sublist() )
void BC_ListBox::promote_selections(ArrayList<BC_ListBoxItem*> *data,
int old_value, int new_value)
{
- for( int i = 0; i < data[master_column].total; i++ ) {
- for( int j = 0; j < columns; j++ ) {
+ for( int i=0; i<data[master_column].total; ++i ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *item = data[j].values[i];
if( item->selected == old_value ) item->selected = new_value;
}
case EXPAND_DN: {
int redraw_toggles = 0;
- for( int i = 0; i < expanders.total && !result; i++ ) {
+ for( int i=0; i<expanders.total&&!result; ++i ) {
if( expanders.values[i]->button_release_event(&redraw_toggles) ) {
result = 1;
}
if( gui && column_titles &&
cursor_y >= 0 && cursor_y < get_title_h() &&
cursor_x >= 0 && cursor_x < gui->get_w() ) {
- for( int i = 1; i < columns; i++ ) {
+ for( int i=1; i<columns; ++i ) {
if( cursor_x >= -xposition + get_column_offset(i) - 5 &&
cursor_x < -xposition + get_column_offset(i) +
get_resources()->listbox_title_hotspot ) {
if( gui && column_titles &&
cursor_y >= 0 && cursor_y < get_title_h() &&
cursor_x >= 0 && cursor_x < gui->get_w() ) {
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
if( cursor_x >= -xposition + get_column_offset(i) &&
(cursor_x < -xposition + get_column_offset(i + 1) ||
i == columns - 1) ) {
int BC_ListBox::test_expanders()
{
- for( int i = 0; i < expanders.total; i++ ) {
+ for( int i=0; i<expanders.total; ++i ) {
if( expanders.values[i]->button_press_event() ) {
current_operation = EXPAND_DN;
draw_toggles(1);
case EXPAND_DN: {
int redraw_toggles = 0;
- for( int i = 0; i < expanders.total && !result; i++ ) {
+ for( int i=0; i<expanders.total&&!result; ++i ) {
result = expanders.values[i]->cursor_motion_event(
&redraw_toggles);
}
if( highlighted_division < 0 && highlighted_title < 0 &&
(display_format == LISTBOX_TEXT ||
display_format == LISTBOX_ICON_LIST) ) {
- for( int i = 0; i < expanders.total; i++ ) {
+ for( int i=0; i<expanders.total; ++i ) {
expanders.values[i]->cursor_motion_event(
&redraw_toggles);
}
clear_listbox(2, 2 + title_h, view_w, view_h);
set_font(MEDIUMFONT);
- for( int i = 0; i < data[master_column].size(); i++ ) {
+ for( int i=0; i<data[master_column].size(); ++i ) {
BC_ListBoxItem *item = data[master_column].get(i);
if( get_item_x(item) >= -get_item_w(item) &&
get_item_x(item) < view_w &&
// Draw one column at a time so text overruns don't go into the next column
// clear column backgrounds
int current_toggle = 0;
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
clear_listbox(LISTBOX_BORDER + get_column_offset(j) - xposition,
LISTBOX_BORDER + title_h,
get_column_width(j, 1),
// Search for a branch and make room for toggle if there is one
if( column == 0 ) {
- for( int i = 0; i < data[column].size(); i++ ) {
+ for( int i=0; i<data[column].size(); ++i ) {
if( data[column].get(i)->get_sublist() ) {
subindent = BC_WindowBase::get_resources()->listbox_expand[0]->get_w();
break;
}
row_height = row_ascent = row_descent = 0;
- for( int i = 0; i < data[column].total; i++ ) {
+ for( int i=0; i<data[column].total; ++i ) {
BC_ListBoxItem *item = data[column].values[i];
int ht = get_text_h(item);
if( ht > row_height ) row_height = ht;
if( dt > row_descent ) row_ascent = bl;
}
- for( int i = 0; i < data[column].size(); i++ ) {
+ for( int i=0; i<data[column].size(); ++i ) {
// Draw a row
BC_ListBoxItem *item = data[column].values[i];
BC_ListBoxItem *first_item = data[master_column].values[i];
(display_format == LISTBOX_TEXT ||
display_format == LISTBOX_ICON_LIST) ) {
//printf("BC_ListBox::draw_titles 1 %d\n", highlighted_title);
- for( int i = 0; i < columns; i++ ) {
+ for( int i=0; i<columns; ++i ) {
if( i != highlighted_title )
draw_title(i);
}
void BC_ListBox::draw_toggles(int flash)
{
- for( int i = 0; i < expanders.total; i++ )
+ for( int i=0; i<expanders.total; ++i )
expanders.values[i]->draw(0);
//printf("BC_ListBox::draw_toggles 1 %d\n", flash);
printf("BC_ListBox::dump 1\n");
}
- for( int i = 0; i < data[master_column].total; i++ ) {
- for( int k = 0; k < indent; k++ )
+ for( int i=0; i<data[master_column].total; ++i ) {
+ for( int k=0; k<indent; ++k )
printf(" ");
- for( int j = 0; j < columns; j++ ) {
+ for( int j=0; j<columns; ++j ) {
BC_ListBoxItem *item = data[j].values[i];
printf("%d,%d,%d=%s ",
item->get_text_x(), item->get_text_y(),