Format window title

Show in the following format:

  file_name (directory_path) - atom
  
This seems to be the format consistently used by Linux editors
and conveys the file name in the task bar when minimized.

Also insert a `~` and drop the directory prefix when the
file/folder being viewed is under the HOME directory
This commit is contained in:
Kevin Sawicki
2012-06-07 14:37:50 -07:00
parent 5ae24551a3
commit 7cc136112a
2 changed files with 27 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ int main(int argc, char *argv[]) {
CefInitialize(settings, app);
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(GTK_WINDOW(window), "Atom");
gtk_window_set_title(GTK_WINDOW(window), "atom");
gtk_window_maximize(GTK_WINDOW(window));
g_signal_connect(window, "focus", G_CALLBACK(&HandleFocus), NULL);

View File

@@ -7,6 +7,7 @@
#include "client_handler.h"
#include "include/cef_browser.h"
#include "include/cef_frame.h"
#include <stdlib.h>
// ClientHandler::ClientLifeSpanHandler implementation
bool ClientHandler::OnBeforePopup(CefRefPtr<CefBrowser> parentBrowser,
@@ -27,10 +28,33 @@ void ClientHandler::OnTitleChange(CefRefPtr<CefBrowser> browser,
const CefString& title) {
REQUIRE_UI_THREAD();
std::string titleStr(title);
size_t inHomeDir;
std::string home = getenv("HOME");
inHomeDir = titleStr.find(home);
if (inHomeDir == 0) {
titleStr = titleStr.substr(home.length());
titleStr.insert(0, "~");
}
size_t lastSlash;
lastSlash = titleStr.rfind("/");
std::string formatted;
if (lastSlash != std::string::npos && lastSlash + 1 < titleStr.length()) {
formatted.append(titleStr, lastSlash + 1,
titleStr.length() - lastSlash);
formatted.append(" (");
formatted.append(titleStr, 0, lastSlash);
formatted.append(")");
} else
formatted.append(titleStr);
formatted.append(" - atom");
GtkWidget* window = gtk_widget_get_ancestor(
GTK_WIDGET(browser->GetWindowHandle()), GTK_TYPE_WINDOW);
std::string titleStr(title);
gtk_window_set_title(GTK_WINDOW(window), titleStr.c_str());
gtk_window_set_title(GTK_WINDOW(window), formatted.c_str());
}
void ClientHandler::SendNotification(NotificationType type) {