Update to v080r08 release.

byuu says, in a post between the v080r07 release and the v080r08
release:

phoenix/Windows:

The slider and scrollbar setParent calls setLength+setPosition, but
setLength sets position = 0 (due to new length possibly invalidating
previous position.)
Cache position first to fix this, can now reparent widgets with proper
slider/scroll positions.

ListView had a workaround where the horizontal scrollbar was always
appearing on single-column lists. The workaround was forcing the config
settings list in bsnes to only select the text portions of each item in
the list, instead of the entire lines. The workaround was needed because
without setting a single header text, the header text count was equal to
zero, causing autoSizeColumns to have no effect. Made the constructor
call setHeaderText("") to guarantee size() >= 1 always. Removes the need
for the workaround, and gives a good file browser and configuration
setting window.

phoenix/Qt:

Worked around Qt bugs #258,674+258,675: if you click a list item with
your mouse, currentItem()->isSelected() returns false. It does not
return true until you select an item with a keyboard key. I forced it to
set the selected item upon currentItemChanged() message. It was also not
sending a changed message upon clearing the selection and then selecting
the same item again. I had to do something undocumented:
setCurrentItem(nullptr) so that currentItemChanged works again.

phoenix/All:

Fonts are now initialized to the platform default settings, Tahoma or
Sans 8-point. This lets geometry on widgets not attached to windows work
better. Makes the ../... buttons smaller pretty much everywhere.

byuu says, announcing the v080r08 release:

Fixed all of the above phoenix issues, and improved the auto-disabling
of buttons on the input setting and state manager windows.
Also manually initiailized lastConfigure for Valgrind in GTK+. Windows
and GTK+ ports look a lot nicer now.
This commit is contained in:
Tim Allen 2011-08-08 22:04:47 +10:00
parent e88ab60663
commit 10906d8418
20 changed files with 45 additions and 28 deletions

View File

@ -29,4 +29,6 @@ void pFont::constructor() {
gtkFont = pango_font_description_new();
PangoContext *context = gdk_pango_context_get_for_screen(gdk_screen_get_default());
gtkLayout = pango_layout_new(context);
font.setFamily("Sans");
font.setSize(8);
}

View File

@ -171,7 +171,7 @@ void pOS::initialize() {
" GtkComboBox::appears-as-list = 1\n"
" GtkTreeView::vertical-separator = 0\n"
"}\n"
"class \"GtkComboBox\" style \"phoenix-gtk\"\n"
//"class \"GtkComboBox\" style \"phoenix-gtk\"\n"
"class \"GtkTreeView\" style \"phoenix-gtk\"\n"
);
}

View File

@ -5,7 +5,7 @@ static void Button_tick(Button *self) {
Geometry pButton::minimumGeometry() {
Font &font = pWidget::font();
Geometry geometry = font.geometry(button.state.text);
return { 0, 0, geometry.width + 24, geometry.height + 14 };
return { 0, 0, geometry.width + 24, geometry.height + 12 };
}
void pButton::setText(const string &text) {

View File

@ -13,7 +13,7 @@ Geometry pComboBox::minimumGeometry() {
foreach(item, comboBox.state.text) maximumWidth = max(maximumWidth, font.geometry(item).width);
Geometry geometry = font.geometry(" ");
return { 0, 0, maximumWidth + 44, geometry.height + 10 };
return { 0, 0, maximumWidth + 44, geometry.height + 12 };
}
void pComboBox::reset() {

View File

@ -211,6 +211,7 @@ void pWindow::setWidgetFont(Font &font) {
}
void pWindow::constructor() {
memset(&lastConfigure, 0, sizeof(GdkEventConfigure));
widget = gtk_window_new(GTK_WINDOW_TOPLEVEL);
if(gdk_screen_is_composited(gdk_screen_get_default())) {

View File

@ -20,6 +20,8 @@ void pFont::setUnderline(bool underline) { update(); }
void pFont::constructor() {
qtFont = new QFont;
font.setFamily("Sans");
font.setSize(8);
}
void pFont::update() {

View File

@ -1,7 +1,7 @@
/****************************************************************************
** Meta object code from reading C++ file 'qt.moc.hpp'
**
** Created: Mon Aug 8 00:07:23 2011
** Created: Mon Aug 8 04:51:19 2011
** by: The Qt Meta Object Compiler version 62 (Qt 4.7.0)
**
** WARNING! All changes made in this file will be lost!
@ -806,15 +806,16 @@ static const uint qt_meta_data_pListView[] = {
// slots: signature, parameters, type, tag, flags
11, 10, 10, 10, 0x0a,
24, 10, 10, 10, 0x0a,
40, 35, 10, 10, 0x0a,
29, 24, 10, 10, 0x0a,
56, 24, 10, 10, 0x0a,
0 // eod
};
static const char qt_meta_stringdata_pListView[] = {
"pListView\0\0onActivate()\0onChange()\0"
"item\0onTick(QTreeWidgetItem*)\0"
"pListView\0\0onActivate()\0item\0"
"onChange(QTreeWidgetItem*)\0"
"onTick(QTreeWidgetItem*)\0"
};
const QMetaObject pListView::staticMetaObject = {
@ -849,7 +850,7 @@ int pListView::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
if (_c == QMetaObject::InvokeMetaMethod) {
switch (_id) {
case 0: onActivate(); break;
case 1: onChange(); break;
case 1: onChange((*reinterpret_cast< QTreeWidgetItem*(*)>(_a[1]))); break;
case 2: onTick((*reinterpret_cast< QTreeWidgetItem*(*)>(_a[1]))); break;
default: ;
}

View File

@ -426,7 +426,7 @@ public:
public slots:
void onActivate();
void onChange();
void onChange(QTreeWidgetItem *item);
void onTick(QTreeWidgetItem *item);
};

View File

@ -82,6 +82,7 @@ void pListView::setSelection(unsigned row) {
locked = true;
QTreeWidgetItem *item = qtListView->currentItem();
if(item) item->setSelected(false);
qtListView->setCurrentItem(0);
auto items = qtListView->findItems("", Qt::MatchContains);
for(unsigned n = 0; n < items.size(); n++) {
if(items[n]->data(0, Qt::UserRole).toUInt() == row) {
@ -100,7 +101,7 @@ void pListView::constructor() {
qtListView->setRootIsDecorated(false);
connect(qtListView, SIGNAL(itemActivated(QTreeWidgetItem*, int)), SLOT(onActivate()));
connect(qtListView, SIGNAL(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)), SLOT(onChange()));
connect(qtListView, SIGNAL(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)), SLOT(onChange(QTreeWidgetItem*)));
connect(qtListView, SIGNAL(itemChanged(QTreeWidgetItem*, int)), SLOT(onTick(QTreeWidgetItem*)));
}
@ -108,7 +109,9 @@ void pListView::onActivate() {
if(locked == false && listView.onActivate) listView.onActivate();
}
void pListView::onChange() {
void pListView::onChange(QTreeWidgetItem *item) {
//Qt bug workaround: clicking items with mouse does not mark items as selected
if(item) item->setSelected(true);
listView.state.selected = selected();
if(listView.state.selected) listView.state.selection = selection();
if(locked == false && listView.onChange) listView.onChange();

View File

@ -46,4 +46,6 @@ void pFont::setUnderline(bool underline) {
void pFont::constructor() {
hfont = Font_createFont("Tahoma", 8, false, false, false);
font.setFamily("Tahoma");
font.setSize(8);
}

View File

@ -27,6 +27,7 @@ void pHorizontalScrollBar::setParent(Window &parent) {
0, 0, 0, 0, parent.p.hwnd, (HMENU)id, GetModuleHandle(0), 0
);
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&horizontalScrollBar);
unsigned position = horizontalScrollBar.state.position;
setLength(horizontalScrollBar.state.length);
setPosition(horizontalScrollBar.state.position);
setPosition(position);
}

View File

@ -28,6 +28,7 @@ void pHorizontalSlider::setParent(Window &parent) {
0, 0, 0, 0, parent.p.hwnd, (HMENU)id, GetModuleHandle(0), 0
);
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&horizontalSlider);
unsigned position = horizontalSlider.state.position;
setLength(horizontalSlider.state.length);
setPosition(horizontalSlider.state.position);
setPosition(position);
}

View File

@ -13,8 +13,6 @@ void pListView::append(const lstring &list) {
utf16_t wtext(text);
ListView_SetItemText(hwnd, row, n, wtext);
}
//workaround: when there is only one column, the horizontal scrollbar will always appear without this
if(listView.state.headerText.size() <= 1) ListView_SetColumnWidth(hwnd, 0, LVSCW_AUTOSIZE_USEHEADER);
}
void pListView::autoSizeColumns() {
@ -32,7 +30,6 @@ void pListView::modify(unsigned row, const lstring &list) {
utf16_t wtext(text);
ListView_SetItemText(hwnd, row, n, wtext);
}
if(listView.state.headerText.size() <= 1) ListView_SetColumnWidth(hwnd, 0, LVSCW_AUTOSIZE_USEHEADER);
}
void pListView::reset() {
@ -110,6 +107,7 @@ void pListView::setSelection(unsigned row) {
void pListView::constructor() {
lostFocus = false;
setParent(Window::None);
listView.setHeaderText("");
}
void pListView::setGeometry(const Geometry &geometry) {

View File

@ -27,6 +27,7 @@ void pVerticalScrollBar::setParent(Window &parent) {
0, 0, 0, 0, parent.p.hwnd, (HMENU)id, GetModuleHandle(0), 0
);
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&verticalScrollBar);
unsigned position = verticalScrollBar.state.position;
setLength(verticalScrollBar.state.length);
setPosition(verticalScrollBar.state.position);
setPosition(position);
}

View File

@ -28,6 +28,7 @@ void pVerticalSlider::setParent(Window &parent) {
0, 0, 0, 0, parent.p.hwnd, (HMENU)id, GetModuleHandle(0), 0
);
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&verticalSlider);
unsigned position = verticalSlider.state.position;
setLength(verticalSlider.state.length);
setPosition(verticalSlider.state.position);
setPosition(position);
}

View File

@ -1,7 +1,7 @@
namespace SNES {
namespace Info {
static const char Name[] = "bsnes";
static const char Version[] = "080.07";
static const char Version[] = "080.08";
static const unsigned SerializerVersion = 21;
}
}

View File

@ -3,9 +3,7 @@ FileBrowser fileBrowser;
void FileBrowser::create() {
application.addWindow(this, "FileBrowser", "160,160");
browseButton.setFont(application.proportionalFont);
browseButton.setText("...");
upButton.setFont(application.proportionalFont);
upButton.setText("..");
const unsigned sq = browseButton.minimumGeometry().height;

View File

@ -5,10 +5,8 @@ void SingleSlotLoader::create() {
application.addWindow(this, "SingleSlotLoader", "160,160");
baseLabel.setText("Base:");
baseBrowse.setFont(application.proportionalFont);
baseBrowse.setText("...");
slotLabel.setText("Slot:");
slotBrowse.setFont(application.proportionalFont);
slotBrowse.setText("...");
okButton.setText("Ok");
@ -100,13 +98,10 @@ void DoubleSlotLoader::create() {
application.addWindow(this, "DoubleSlotLoader", "160,160");
baseLabel.setText("Base:");
baseBrowse.setFont(application.proportionalFont);
baseBrowse.setText("...");
slotALabel.setText("Slot A:");
slotABrowse.setFont(application.proportionalFont);
slotABrowse.setText("...");
slotBLabel.setText("Slot B:");
slotBBrowse.setFont(application.proportionalFont);
slotBBrowse.setText("...");
okButton.setText("Ok");

View File

@ -39,15 +39,19 @@ void InputSettings::create() {
controlLayout.append(customButton2, 100, 0, 5);
controlLayout.append(customButton3, 100, 0, 5);
controlLayout.append(spacer, ~0, 0);
controlLayout.append(clearButton, 100, 0);
controlLayout.append(clearButton, 80, 0);
layout.append(controlLayout);
settingsWindow.append(panelLayout);
clearButton.setEnabled(false);
portBox.onChange = { &InputSettings::portChanged, this };
deviceBox.onChange = { &InputSettings::deviceChanged, this };
mappingList.onActivate = { &InputSettings::assignInput, this };
mappingList.onChange = [this] {
clearButton.setEnabled(mappingList.selected());
};
customButton1.onTick = [this]() { manualInput(1); };
customButton2.onTick = [this]() { manualInput(2); };
@ -95,6 +99,7 @@ void InputSettings::deviceChanged() {
mappingList.append(controller[i]->name, mapping);
}
mappingList.autoSizeColumns();
clearButton.setEnabled(mappingList.selected());
locked = false;
}

View File

@ -37,6 +37,11 @@ void StateManager::create() {
void StateManager::synchronize() {
descEdit.setText("");
descEdit.setEnabled(false);
loadButton.setEnabled(stateList.selected());
saveButton.setEnabled(stateList.selected());
eraseButton.setEnabled(stateList.selected());
if(stateList.selected() == false) return;
if(slot[stateList.selection()].capacity() > 0) {
descEdit.setText(slotLoadDescription(stateList.selection()));
@ -74,6 +79,7 @@ void StateManager::load() {
}
refresh();
synchronize();
}
void StateManager::save() {