]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_sendfax_main.C
Dekel's patch -- I didn't fix the xforms-0.88 keysyms stuff so it still doesn't finis...
[lyx.git] / src / lyx_sendfax_main.C
index e497427032fe3d24619d8048ee1c0497b38cd5e8..0f12f74c6fa27f3af5cccddfc4e90376490087f7 100644 (file)
 #include "support/syscall.h"
 #include "gettext.h"
 
+using std::endl;
+
 /* Prototypes */
 
-bool sendfax(string const &fname, string const &sendcmd);
-bool button_send(string const &fname, string const &sendcmd = string());
-void show_logfile(string logfile, bool show_if_empty);
+bool sendfax(string const & fname, string const & sendcmd);
+bool button_send(string const & fname, string const & sendcmd = string());
+
+static 
+void show_logfile(string const & logfile, bool show_if_empty);
 
 const int LEN_PHONE = 20;
 const int LEN_NAME = 25;
@@ -27,11 +31,12 @@ string phone_book;
 string global_sendcmd;
 string filename;
 
-FD_xsendfax *fd_xsendfax;
-FD_phonebook  *fd_phonebook;
-FD_logfile  *fd_logfile;
+FD_xsendfax * fd_xsendfax;
+FD_phonebook fd_phonebook;
+FD_logfile fd_logfile;
 
-bool send_fax(string const &fname, string const &sendcmd)
+
+bool send_fax(string const & fname, string const & sendcmd)
 {
     // I put FAXCMD here to see if I can get rid of some strange errors. (Lgb)
     string FAXCMD = "sendfax -n -h '$$Host' -c '$$Comment' -x '$$Enterprise' -d '$$Name'@'$$Phone' '$$FName'";
@@ -40,7 +45,7 @@ bool send_fax(string const &fname, string const &sendcmd)
     
     if (fname.empty())
         return false;
-    path=OnlyPath(fname);
+    path = OnlyPath(fname);
     if (path.empty() || path == "./")
         filename = GetCWD() + "/" + fname;
     else
@@ -62,13 +67,13 @@ bool send_fax(string const &fname, string const &sendcmd)
 
     /* init Phone-Book */
     string phone_book_name;
-    if (lyxrc->phone_book.empty()) {
+    if (lyxrc.phone_book.empty()) {
         phone_book_name = "phonebook";
     } else
-        phone_book_name = lyxrc->phone_book;
-    phone_book=FileSearch(user_lyxdir,phone_book_name);
+        phone_book_name = lyxrc.phone_book;
+    phone_book= FileSearch(user_lyxdir, phone_book_name);
     if (phone_book.empty()) 
-        phone_book = AddName(user_lyxdir,phone_book_name);
+        phone_book = AddName(user_lyxdir, phone_book_name);
 
     fl_set_browser_fontsize(fd_phonebook->browser, FL_NORMAL_SIZE);
     fl_set_browser_fontstyle(fd_phonebook->browser, FL_FIXED_STYLE);
@@ -77,19 +82,20 @@ bool send_fax(string const &fname, string const &sendcmd)
     title += OnlyFilename(fname);
 
     /* show the first form */
-    fl_show_form(fd_xsendfax->xsendfax,FL_PLACE_MOUSE,FL_FULLBORDER,title.c_str());
+    fl_show_form(fd_xsendfax->xsendfax,
+                FL_PLACE_MOUSE, FL_FULLBORDER, title.c_str());
 /*
     while(true) {
         obj = fl_do_forms();
-        if (obj==fd_xsendfax->Button_Cancel)
+        if (obj == fd_xsendfax->Button_Cancel)
             break;
-        else if (obj==fd_xsendfax->Button_Send) {
-            if (button_send(fname,global_sendcmd))
+        else if (obj == fd_xsendfax->Button_Send) {
+            if (button_send(fname, global_sendcmd))
                 break;
-        } else if (obj==fd_xsendfax->Button_Apply) {
-            button_send(fname,global_sendcmd);
-        } else if (obj==fd_xsendfax->Button_SPhone) {
-            cb_select_phoneno(0,0);
+        } else if (obj == fd_xsendfax->Button_Apply) {
+            button_send(fname, global_sendcmd);
+        } else if (obj == fd_xsendfax->Button_SPhone) {
+            cb_select_phoneno(0, 0);
         }
     }
     fl_hide_form(fd_xsendfax->xsendfax);
@@ -98,21 +104,18 @@ bool send_fax(string const &fname, string const &sendcmd)
 }
 
 
-bool button_send(string const &fname, string const &sendcmd)
+bool button_send(string const & fname, string const & sendcmd)
 {
-    string
-        name = fl_get_input(fd_xsendfax->Input_Name),
-        phone = fl_get_input(fd_xsendfax->Input_Phone),
-        enterprise = fl_get_input(fd_xsendfax->Input_Enterprise),
-        comment = fl_get_input(fd_xsendfax->Input_Comment),
-        host = GetEnv("FAX_SERVER"),
-        logfile,
-        cmd;
+    string name = fl_get_input(fd_xsendfax->Input_Name);
+    string phone = fl_get_input(fd_xsendfax->Input_Phone);
+    string enterprise = fl_get_input(fd_xsendfax->Input_Enterprise);
+    string comment = fl_get_input(fd_xsendfax->Input_Comment);
+    string host = GetEnv("FAX_SERVER");
 
     if (phone.empty())
         return false;
-    logfile = TmpFileName(OnlyPath(fname),"FAX");
-    cmd = sendcmd + " >";
+    string logfile = TmpFileName(OnlyPath(fname), "FAX");
+    string cmd = sendcmd + " >";
     cmd += logfile + " 2>";
     cmd += logfile;
     cmd = subst(cmd, "$$Host", host);
@@ -123,13 +126,13 @@ bool button_send(string const &fname, string const &sendcmd)
     cmd = subst(cmd, "$$FName", fname);
     lyxerr << "CMD: " << cmd << endl;
     Systemcalls one(Systemcalls::System, cmd);
-    show_logfile(logfile,false);
+    show_logfile(logfile, false);
     remove(logfile.c_str());
     return true;
 }
 
 
-void cb_hide_form(FL_OBJECT *ob, long)
+void cb_hide_form(FL_OBJECT * ob, long)
 {
     fl_hide_form(ob->form);
 }
@@ -137,73 +140,66 @@ void cb_hide_form(FL_OBJECT *ob, long)
 
 void cb_select_phoneno(FL_OBJECT *, long)
 {
-    int
-        i,
-        n=fl_get_browser_maxline(fd_phonebook->browser);
-    char const
-        *line;
+    int n = fl_get_browser_maxline(fd_phonebook->browser);
 
     fl_hide_form(fd_phonebook->phonebook);
-    line = fl_get_browser_line(fd_phonebook->browser, 1);
-    if (!n || strstr(line,_("Empty Phonebook"))) {
+    char const * line = fl_get_browser_line(fd_phonebook->browser, 1);
+    if (!n || strstr(line, _("Empty Phonebook"))) {
         fl_clear_browser(fd_phonebook->browser);
         return;
     }
-    i = fl_get_browser(fd_phonebook->browser);
+    int i = fl_get_browser(fd_phonebook->browser);
     line = fl_get_browser_line(fd_phonebook->browser, i);
     if (!line)
         return;
-    char *buf = new char [strlen(line)+1];
+    char * buf = new char [strlen(line)+1];
 
-    strcpy(buf,line);
-    for(i = LEN_PHONE;(i>0) && (buf[i]==' ');i--)
+    strcpy(buf, line);
+    for(i = LEN_PHONE; (i > 0) && (buf[i] == ' '); --i)
         ;
-    buf[i+1] = 0;
-    for(i = LEN_PHONE+LEN_NAME+1;(i>LEN_PHONE) && (buf[i]==' ');i--)
+    buf[i + 1] = 0;
+    for(i = LEN_PHONE + LEN_NAME + 1; (i > LEN_PHONE) && (buf[i] == ' '); --i)
         ;
-    buf[i+1] = 0;
-    fl_set_input(fd_xsendfax->Input_Phone,buf);
-    fl_set_input(fd_xsendfax->Input_Name,buf+LEN_PHONE+1);
-    fl_set_input(fd_xsendfax->Input_Enterprise,buf+LEN_PHONE+LEN_NAME+2);
+    buf[i + 1] = 0;
+    fl_set_input(fd_xsendfax->Input_Phone, buf);
+    fl_set_input(fd_xsendfax->Input_Name, buf+LEN_PHONE+1);
+    fl_set_input(fd_xsendfax->Input_Enterprise, buf+LEN_PHONE+LEN_NAME+2);
     delete [] buf;
 }
 
 
 void cb_add_phoneno(FL_OBJECT *, long )
 {
-    char const
-        *line;
-    char const
-        *name = fl_get_input(fd_xsendfax->Input_Name),
-        *phone = fl_get_input(fd_xsendfax->Input_Phone),
-        *enterprise = fl_get_input(fd_xsendfax->Input_Enterprise);
-    int
-        i,n;
+    char const * phone = fl_get_input(fd_xsendfax->Input_Phone);
 
     if (!strlen(phone))
         return;
 
-    char *buf = new char [50+strlen(enterprise)];
+    char const * name = fl_get_input(fd_xsendfax->Input_Name);
+    char const * enterprise = fl_get_input(fd_xsendfax->Input_Enterprise);
+
+    char * buf = new char [50 + strlen(enterprise)];
 
-    sprintf(buf,"%-*.*s %-*.*s %s",
-            LEN_PHONE,LEN_PHONE,phone,
-            LEN_NAME,LEN_NAME,name,
+    sprintf(buf, "%-*.*s %-*.*s %s",
+            LEN_PHONE, LEN_PHONE, phone,
+            LEN_NAME, LEN_NAME, name,
             enterprise);
-    n = fl_get_browser_maxline(fd_phonebook->browser);
+    int n = fl_get_browser_maxline(fd_phonebook->browser);
     if (n) {
-        line = fl_get_browser_line(fd_phonebook->browser, 1);
-        if (strstr(line,_("Empty Phonebook"))) {
+        char const * line = fl_get_browser_line(fd_phonebook->browser, 1);
+        if (strstr(line, _("Empty Phonebook"))) {
             fl_clear_browser(fd_phonebook->browser);
             n = 0;
         }
     }
-    for(i = 1; i <= n; i++) {
-        line = fl_get_browser_line(fd_phonebook->browser, i);
-        if (!strncmp(buf,line,46))
+    int i = 1;
+    for(; i <= n; ++i) {
+        char const * line = fl_get_browser_line(fd_phonebook->browser, i);
+        if (!strncmp(buf, line, 46))
             break;
     }
     if (i > n) {
-        fl_addto_browser(fd_phonebook->browser,buf);
+        fl_addto_browser(fd_phonebook->browser, buf);
         fl_set_object_label(fd_xsendfax->pb_save, _("Save (needed)"));
     }
     delete[] buf;
@@ -212,37 +208,36 @@ void cb_add_phoneno(FL_OBJECT *, long )
 
 void cb_delete_phoneno(FL_OBJECT *, long )
 {
-    char const
-        *line;
-    char const
-        *name = fl_get_input(fd_xsendfax->Input_Name),
-        *phone = fl_get_input(fd_xsendfax->Input_Phone),
-        *enterprise = fl_get_input(fd_xsendfax->Input_Enterprise);
-    int
-        i,n;
+    char const * phone = fl_get_input(fd_xsendfax->Input_Phone);
 
     if (!strlen(phone))
         return;
-    char *buf = new char [50+strlen(enterprise)];
-    sprintf(buf,"%-*.*s %-*.*s %s",
-            LEN_PHONE,LEN_PHONE,phone,
-            LEN_NAME,LEN_NAME,name,
+
+    char const * name = fl_get_input(fd_xsendfax->Input_Name);
+    char const * enterprise = fl_get_input(fd_xsendfax->Input_Enterprise);
+
+    char * buf = new char [50+strlen(enterprise)];
+
+    sprintf(buf, "%-*.*s %-*.*s %s",
+            LEN_PHONE, LEN_PHONE, phone,
+            LEN_NAME, LEN_NAME, name,
             enterprise);
-    n = fl_get_browser_maxline(fd_phonebook->browser);
+    int n = fl_get_browser_maxline(fd_phonebook->browser);
     if (n) {
-        line = fl_get_browser_line(fd_phonebook->browser, 1);
-        if (strstr(line,_("Empty Phonebook"))) {
+        char const * line = fl_get_browser_line(fd_phonebook->browser, 1);
+        if (strstr(line, _("Empty Phonebook"))) {
             fl_clear_browser(fd_phonebook->browser);
             n = 0;
         }
     }
-    for(i=1;i<=n;i++) {
-        line = fl_get_browser_line(fd_phonebook->browser, i);
-        if (!strncmp(buf,line,46))
+    int i = 1;
+    for(; i <= n; ++i) {
+        char const * line = fl_get_browser_line(fd_phonebook->browser, i);
+        if (!strncmp(buf, line, 46))
             break;
     }
     if (i <= n) {
-        fl_delete_browser_line(fd_phonebook->browser,i);
+        fl_delete_browser_line(fd_phonebook->browser, i);
         fl_set_object_label(fd_xsendfax->pb_save, _("Save (needed)"));
     }
     delete[] buf;
@@ -251,39 +246,36 @@ void cb_delete_phoneno(FL_OBJECT *, long )
 
 void cb_save_phoneno(FL_OBJECT *, long )
 {
-    char const
-        *line;
-    int
-        i,n;
-    FILE
-        *fp;
-
-    if (!(fp = fopen(phone_book.c_str(),"w"))) {
-        WriteAlert(_("Error!"),_("Cannot open phone book: "),phone_book);
+    FILE * fp = fopen(phone_book.c_str(), "w");
+    if (!fp) {
+        WriteAlert(_("Error!"), _("Cannot open phone book: "), phone_book);
         return;
     }
-    n = fl_get_browser_maxline(fd_phonebook->browser);
+    int n = fl_get_browser_maxline(fd_phonebook->browser);
     if (n) {
-        line = fl_get_browser_line(fd_phonebook->browser, 1);
-        if (strstr(line,_("Empty Phonebook"))) {
+        char const * line = fl_get_browser_line(fd_phonebook->browser, 1);
+        if (strstr(line, _("Empty Phonebook"))) {
             fl_clear_browser(fd_phonebook->browser);
             n = 0;
         }
     }
-    for(i=1;i<=n;i++) {
-        line = fl_get_browser_line(fd_phonebook->browser, i);
-        fprintf(fp,"%s\n",line);
+    int i = 1;
+    for(; i <= n; ++i) {
+        char const * line = fl_get_browser_line(fd_phonebook->browser, i);
+        fprintf(fp, "%s\n", line);
     }
     fclose(fp);
     fl_set_object_label(fd_xsendfax->pb_save, _("Save"));
     fl_redraw_form(fd_xsendfax->xsendfax);
 }
 
-void show_logfile(string logfile, bool show_if_empty)
+
+static
+void show_logfile(string const & logfile, bool show_if_empty)
 {
     if (logfile.empty())
         return;
-    if (!fl_load_browser(fd_logfile->browser,logfile.c_str())) {
+    if (!fl_load_browser(fd_logfile->browser, logfile.c_str())) {
         if (!show_if_empty)
             return;
         fl_add_browser_line(fd_logfile->browser,
@@ -293,39 +285,43 @@ void show_logfile(string logfile, bool show_if_empty)
         fl_raise_form(fd_logfile->logfile);
     } else {
         fl_show_form(fd_logfile->logfile,
-                     FL_PLACE_MOUSE | FL_FREE_SIZE,FL_FULLBORDER,
+                     FL_PLACE_MOUSE | FL_FREE_SIZE, FL_FULLBORDER,
                      _("Message-Window"));
     }
 }
 
+
 void FaxLogfileCloseCB(FL_OBJECT *, long)
 {
     fl_hide_form(fd_logfile->logfile);
 }
 
+
 void FaxCancelCB(FL_OBJECT *, long)
 {
     fl_hide_form(fd_xsendfax->xsendfax);
 }
 
+
 void FaxApplyCB(FL_OBJECT *, long)
 {
-    button_send(filename,global_sendcmd);
+    button_send(filename, global_sendcmd);
 }
 
+
 void FaxSendCB(FL_OBJECT *, long)
 {
-    if (button_send(filename,global_sendcmd))
-        FaxCancelCB(0,0);
+    if (button_send(filename, global_sendcmd))
+        FaxCancelCB(0, 0);
 }
 
+
 void FaxOpenPhonebookCB(FL_OBJECT *, long)
 {
-    int
-        n=fl_get_browser_maxline(fd_phonebook->browser);
+    int n = fl_get_browser_maxline(fd_phonebook->browser);
 
     if (!n)
-        fl_addto_browser(fd_phonebook->browser,_("@L@b@cEmpty Phonebook"));
-    fl_show_form(fd_phonebook->phonebook,FL_PLACE_MOUSE,FL_FULLBORDER,
+        fl_addto_browser(fd_phonebook->browser, _("@L@b@cEmpty Phonebook"));
+    fl_show_form(fd_phonebook->phonebook, FL_PLACE_MOUSE, FL_FULLBORDER,
                  _("Phonebook"));
 }