Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - topdown

#1
If I change the title bar property in 1.4.2, the editor does not know it unless I tab out, losing the focus, triggering the SIGNAL.  I confess I am not an expert in Qt, C++, or the overall design, though I am getting up to speed. 

I saw this on Github:

settings_dialog.cpp


  connect(&model, SIGNAL(title_bar_changed(QString)),
          this, SLOT(update_title_bar_field()));
  connect(ui.title_bar_field, SIGNAL(editingFinished()),
          this, SLOT(change_title_bar_requested()));



and in plain_text_edit.h,



class PlainTextEdit : public QPlainTextEdit ....

  inline PlainTextEdit(QWidget* parent = nullptr) :
    QPlainTextEdit(parent),
    changed(false),
    show_margin(false) {

    setTabChangesFocus(true);
    setLineWrapMode(LineWrapMode::NoWrap);

    QTextCharFormat char_format = currentCharFormat();
    char_format.setFontFixedPitch(true);
    setCurrentCharFormat(char_format);

    connect(this, SIGNAL(textChanged()), this, SLOT(handle_text_changed()));
  }


Do you think this should be on changing any text in the field or that you have to tab out.  I found that I would change the title bar and run the program.  I saw no change, so I hit save.  I saw no change, and that is when I figured out I had to lose focus.

Interested in feedback.  Thanks.
#2
I ask because I went here,

http://www.solarus-games.org/download/

and it has,

Download Solarus 1.4.

That link does not point to,

http://www.solarus-games.org/engine/download/

which is what I thought it would go to.  Hope that helps.
#3
I don't know what to call it.  I was looking here:

http://gameslikefinder.com/across-age/

On the bottom they have the "panel."



Also, Are the graphics ability of the program able to handle something like this look?  Are the graphics more about the artist or will the system slow down, etc.?

edit:  Another one,

http://gameslikefinder.com/zenonia/





The Binding of Isaac has the panel up top,


Thanks.
#4
I'm sorry if I missed it.  Is there a link back to the main http://solarus-games.org page?  I find I need to reference it and go back and forth.  I can open two tabs, but it is just a thought.
#5
General discussion / How do I install lua51.dll?
May 24, 2015, 12:27:58 AM
Sorry for so many questions, but I tried to run the Zelda game(s) and it said lua51.dll was missing.  I know what it wants, but how do I get it?  I'm sure I can find the lua dll, but can this be packaged with the game in the installer?
#6
Development / How can one contribute?
May 24, 2015, 12:16:02 AM
Other than money, which is probably always welcome  ;D, how can one contribute to the project?
#7
General discussion / How do you deploy a game?
May 24, 2015, 12:07:06 AM
Hello, How is a game "deployed"?  I looked at the documentation, searching for deploy/deployment.  Perhaps that is the wrong term.

Thanks.