0

我正在尝试重命名应用程序主窗口的标题,但是在尝试重命名时,名称会被截断。我试图看看这是否是转换问题,但我真的找不到为什么会发生这种情况。试试这个小程序。点击取消以在标题栏中查看默认应用程序名称,但如果您选择一个文件,它应该将文件的第一行显示为标题,而是将其截断...截断总是在字符串末尾前 3 个字符,并添加三个点“...”。

我究竟做错了什么??还是我的 gtkmm 版本有问题?我使用 gtkmm-2.4 提前致谢。

#include <iostream>
#include <gtkmm.h>

using namespace std;
using namespace Gtk;
using namespace Glib;

class AppWindow : public Window {
 public:
    AppWindow();
 protected:
    void onMenuFileOpen();
 private:
    ustring app_name;
    void OpenScript(const ustring sScriptFile);
};

AppWindow::AppWindow() {
    app_name = "default app_name, very long name, with !!^spectal caractères à afficher, and there is no name truncation";
    //set_title(app_name);  
    set_default_size(600, 600);

    onMenuFileOpen();

}

void AppWindow::onMenuFileOpen() {
    FileChooserDialog dialog("Choose a file", FILE_CHOOSER_ACTION_OPEN);
    dialog.set_transient_for(*this);

    //Add response buttons the the dialog:
    dialog.add_button(Stock::CANCEL, RESPONSE_CANCEL);
    dialog.add_button(Stock::OPEN, RESPONSE_OK);

    //Plain text filter
    FileFilter filter_text;
    filter_text.set_name("plain text");
    filter_text.add_mime_type("text/plain");
    dialog.add_filter(filter_text);

    //Show the dialog and wait for a user response:
    if(dialog.run() == RESPONSE_OK) {
        OpenScript(dialog.get_filename());
    }
    //HERE, I RENAME THE WINDOW
    set_title(app_name);
    cout << app_name << endl;
}

void AppWindow::OpenScript(const ustring sScriptFile) {
    RefPtr<IOChannel> file = IOChannel::create_from_file(sScriptFile,"r");
    IOStatus status;
    ustring one_line;

    if(file->get_flags() & IO_FLAG_IS_READABLE) {
        status = file->read_line(one_line);
        app_name=one_line;
    }
    file->close();
}

int main(int argc, char *argv[]) {
    Main kit(argc, argv);

    AppWindow window;
    //Shows the window and returns when it is closed.
    Main::run(window);

    return 0;
}
4

2 回答 2

3

在这里工作正常。

  • 也许您的文件不是 UTF-8 编码?
  • 如果标题比标题栏中的空间长,标题被截断是正常的吗?
于 2011-02-22T13:37:08.313 回答
0

好的,我终于自己找到了解决方案。我写在这里以防其他人遇到同样的问题。我不知道这是一个错误还是什么,但似乎 GTK 将 '\n' 之前的最后三个字符替换为 '...'。换句话说,用于重命名窗口的字符串不能包含任何 '\n' 否则 set_title 将不会显示全名(它将在 '\n' 之前停止三个字符)。

因此,就我而言,由于我使用了 'getline()',因此我只是从字符串末尾删除了 '\n'。

app_name.erase(app_name.end()-1);
请注意,我必须使用 'std::string' 而不是 'Gtk::ustring',因为它不处理 'end()' 函数上的 'operator-'。

于 2011-02-25T20:43:18.897 回答