Start work on eliminating redundant variable usage. Prevent
an I-bar from showing up on the output frame. Move the copyright notice out to a header file.
This commit is contained in:
parent
568d13677f
commit
0e9ed3e250
@ -2,6 +2,7 @@
|
||||
* Fix a few potential buffer overflows and wrap assignment statements in parens.
|
||||
* Convert build system to plain Make.
|
||||
* Start removing references to FreeNode.
|
||||
* Move the repeated copyright banners out to a single header.
|
||||
|
||||
2005-04-01 Riccardo Mottola <rmottola@users.sf.net>
|
||||
* network.c : removed useless statement
|
||||
|
@ -102,3 +102,4 @@
|
||||
|
||||
/* Define to 1 if the X Window System is missing or not being used. */
|
||||
/* #undef X_DISPLAY_MISSING */
|
||||
#include "copyright.h"
|
||||
|
30
src/copyright.h
Normal file
30
src/copyright.h
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
@ -2,44 +2,8 @@
|
||||
* filesave.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <Xm/Xm.h>
|
||||
@ -104,3 +68,4 @@ void saveFileCbk (Widget w, XtPointer clientData, XtPointer callData)
|
||||
XtUnmanageChild(w);
|
||||
}
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
@ -2,42 +2,7 @@
|
||||
* filesave.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
void saveFile(Widget parent);
|
||||
#include "copyright.h"
|
||||
|
37
src/help.c
37
src/help.c
@ -2,44 +2,8 @@
|
||||
* help.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
#include <Xm/Xm.h>
|
||||
#include <Xm/MessageB.h>
|
||||
#include <Xm/SelectioB.h>
|
||||
@ -163,3 +127,4 @@ void displayCommandsHelpBox()
|
||||
{
|
||||
XtManageChild(commandsHelpDlgBox);
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
37
src/help.h
37
src/help.h
@ -2,46 +2,11 @@
|
||||
* help.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
void createAboutBox(Widget parent);
|
||||
void aboutOkCbk();
|
||||
void displayAboutBox();
|
||||
void createCommandsHelpBox(Widget parent);
|
||||
void displayCommandsHelpBox();
|
||||
#include "copyright.h"
|
||||
|
@ -2,43 +2,8 @@
|
||||
* interpreter.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
@ -849,3 +814,4 @@ void handleCTCPVersion (char *sender)
|
||||
sprintf(localEcho, "[ sent Version to %s ]\n", nick);
|
||||
appendText(localEcho);
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
@ -2,29 +2,8 @@
|
||||
* interpreter.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#define RPL_WELCOME 001
|
||||
#define RPL_WHOISUSER 311
|
||||
#define RPL_WHOISSERVER 312
|
||||
@ -56,3 +35,4 @@ void handlePartNotify(char *sender, char *desc);
|
||||
void handleNamesReply(char *message);
|
||||
void handleMode (char *sender, char *dest, char *msg);
|
||||
void handleCTCPVersion (char *sender);
|
||||
#include "copyright.h"
|
||||
|
220
src/main.c
220
src/main.c
@ -2,49 +2,13 @@
|
||||
* main.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/utsname.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "main.h"
|
||||
#include <sys/utsname.h>
|
||||
|
||||
#include <Xm/Xm.h>
|
||||
#include <Xm/MainW.h>
|
||||
@ -55,6 +19,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#include <Xm/PanedW.h>
|
||||
#include <Xm/List.h>
|
||||
|
||||
#include "main.h"
|
||||
#include "interpreter.h"
|
||||
#include "help.h"
|
||||
#include "preferences.h"
|
||||
@ -69,11 +34,11 @@ void fileMenuCall(Widget w, XtPointer clientData, XtPointer callData);
|
||||
void userMenuCall(Widget w, XtPointer clientData, XtPointer callData);
|
||||
void helpMenuCall(Widget w, XtPointer clientData, XtPointer callData);
|
||||
void userListSelectCbk(Widget w, XtPointer data, XtPointer callData);
|
||||
void commandInputCall();
|
||||
void inputAreaCall();
|
||||
|
||||
Widget mainWindow;
|
||||
|
||||
Widget commandInput;
|
||||
Widget inputArea;
|
||||
Widget outputArea;
|
||||
Widget userList;
|
||||
|
||||
@ -98,114 +63,46 @@ int main (int argc, char *argv[])
|
||||
/* Menu Stuff */
|
||||
Widget menuBar, helpMenu;
|
||||
|
||||
static String fallback_resources[] = {
|
||||
"*sgiMode: True",
|
||||
"*useSchemes: all",
|
||||
NULL };
|
||||
topWidget = XtVaAppInitialize(&nebulaIrcAppContext, "Nebula IRC", NULL, 0, &argc, argv, NULL, NULL);
|
||||
|
||||
topWidget = XtVaAppInitialize(&nebulaIrcAppContext, "Nebula IRC",
|
||||
NULL, 0, /* no command line options */
|
||||
&argc, argv,
|
||||
fallback_resources, /* fallback resource list */
|
||||
NULL);
|
||||
|
||||
mainWindow = XtVaCreateManagedWidget("main_window",
|
||||
xmMainWindowWidgetClass, topWidget,
|
||||
XmNcommandWindowLocation, XmCOMMAND_BELOW_WORKSPACE,
|
||||
XmNwidth, 600,
|
||||
XmNheight, 500,
|
||||
NULL);
|
||||
|
||||
/* create menu bar */
|
||||
{
|
||||
XmString fileMenuStr, userMenuStr, helpMenuStr;
|
||||
|
||||
fileMenuStr = XM_STRING_CREATE("File");
|
||||
userMenuStr = XM_STRING_CREATE("User");
|
||||
helpMenuStr = XM_STRING_CREATE("Help");
|
||||
mainWindow = XtVaCreateManagedWidget("main_window", xmMainWindowWidgetClass, topWidget, XmNcommandWindowLocation, XmCOMMAND_BELOW_WORKSPACE, XmNwidth, 600, XmNheight, 500, NULL);
|
||||
|
||||
menuBar = XmVaCreateSimpleMenuBar(mainWindow, "menubar",
|
||||
XmVaCASCADEBUTTON, fileMenuStr, 'F',
|
||||
XmVaCASCADEBUTTON, userMenuStr, 'U',
|
||||
XmVaCASCADEBUTTON, XM_STRING_CREATE("File"), 'F',
|
||||
XmVaCASCADEBUTTON, XM_STRING_CREATE("User"), 'U',
|
||||
NULL);
|
||||
|
||||
XmStringFree(fileMenuStr);
|
||||
XmStringFree(userMenuStr);
|
||||
XmStringFree(helpMenuStr);
|
||||
}
|
||||
|
||||
/* File Menu */
|
||||
{
|
||||
XmString prefStr;
|
||||
XmString saveConvStr;
|
||||
XmString quitStr;
|
||||
|
||||
prefStr = XM_STRING_CREATE("Preferences...");
|
||||
saveConvStr = XM_STRING_CREATE("Save Conversation...");
|
||||
quitStr = XM_STRING_CREATE("Quit");
|
||||
XmVaCreateSimplePulldownMenu(menuBar, "file_menu", 0,
|
||||
fileMenuCall,
|
||||
XmVaPUSHBUTTON, prefStr, 'P', NULL, NULL,
|
||||
XmVaPUSHBUTTON, saveConvStr, 'S', NULL, NULL,
|
||||
XmVaPUSHBUTTON, quitStr, 'Q', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Preferences..."), 'P', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Save Conversation"), 'S', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Quit"), 'Q', NULL, NULL,
|
||||
NULL);
|
||||
XmStringFree(prefStr);
|
||||
XmStringFree(saveConvStr);
|
||||
XmStringFree(quitStr);
|
||||
}
|
||||
/* User Menu */
|
||||
{
|
||||
XmString whoisStr;
|
||||
XmString versionStr;
|
||||
XmString opStr;
|
||||
XmString deopStr;
|
||||
|
||||
whoisStr = XM_STRING_CREATE("Whois");
|
||||
versionStr = XM_STRING_CREATE("Client version");
|
||||
opStr = XM_STRING_CREATE("Op");
|
||||
deopStr = XM_STRING_CREATE("Deop");
|
||||
XmVaCreateSimplePulldownMenu(menuBar, "user_menu", 1,
|
||||
userMenuCall,
|
||||
XmVaPUSHBUTTON, whoisStr, 'W', NULL, NULL,
|
||||
XmVaPUSHBUTTON, versionStr, '\0', NULL, NULL,
|
||||
XmVaPUSHBUTTON, opStr, 'O', NULL, NULL,
|
||||
XmVaPUSHBUTTON, deopStr, 'D', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Whois"), 'W', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Client version"), '\0', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Op"), 'O', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Deop"), 'D', NULL, NULL,
|
||||
NULL);
|
||||
XmStringFree(whoisStr);
|
||||
XmStringFree(versionStr);
|
||||
XmStringFree(opStr);
|
||||
XmStringFree(deopStr);
|
||||
}
|
||||
/* Help Menu */
|
||||
{
|
||||
XmString helpCommandStr;
|
||||
XmString aboutStr;
|
||||
|
||||
helpCommandStr = XM_STRING_CREATE("Commands...");
|
||||
aboutStr = XM_STRING_CREATE("About...");
|
||||
helpMenu = XtVaCreateManagedWidget("Help",
|
||||
xmCascadeButtonWidgetClass, menuBar,
|
||||
XmNmnemonic, 'H',
|
||||
NULL);
|
||||
XmVaCreateSimplePulldownMenu(menuBar, "Help", 2,
|
||||
helpMenuCall,
|
||||
XmVaPUSHBUTTON, aboutStr, 'A', NULL, NULL,
|
||||
XmVaPUSHBUTTON, helpCommandStr, 'C', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("About..."), 'A', NULL, NULL,
|
||||
XmVaPUSHBUTTON, XM_STRING_CREATE("Commands"), 'C', NULL, NULL,
|
||||
NULL);
|
||||
XmStringFree(helpCommandStr);
|
||||
XmStringFree(aboutStr);
|
||||
|
||||
/* now set the help button */
|
||||
XtVaSetValues(menuBar, XmNmenuHelpWidget, helpMenu, NULL);
|
||||
}
|
||||
|
||||
/* now manage the menu bar */
|
||||
XtManageChild(menuBar);
|
||||
|
||||
/* create a form */
|
||||
mainForm = XtVaCreateWidget("form", xmFormWidgetClass, mainWindow, XmNfractionBase, 3, NULL);
|
||||
|
||||
/* vertical split user form */
|
||||
userForm = XtVaCreateWidget("userform", xmFormWidgetClass, mainForm,
|
||||
XmNfractionBase, 5,
|
||||
XmNtopAttachment, XmATTACH_FORM,
|
||||
@ -214,61 +111,59 @@ int main (int argc, char *argv[])
|
||||
XmNrightAttachment, XmATTACH_FORM,
|
||||
NULL);
|
||||
|
||||
/* output area */
|
||||
{
|
||||
Arg args[12];
|
||||
|
||||
XtSetArg(args[0], XmNeditable, False);
|
||||
XtSetArg(args[1], XmNeditMode, XmMULTI_LINE_EDIT);
|
||||
XtSetArg(args[2], XmNscrollHorizontal, False);
|
||||
XtSetArg(args[3], XmNwordWrap, True);
|
||||
XtSetArg(args[4], XmNtopAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[5], XmNtopPosition, 0);
|
||||
XtSetArg(args[6], XmNbottomAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[7], XmNbottomPosition, 5);
|
||||
XtSetArg(args[8], XmNleftAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[9], XmNleftPosition, 0);
|
||||
XtSetArg(args[10], XmNrightAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[11], XmNrightPosition, 4);
|
||||
outputArea = XmCreateScrolledText(userForm, "output", args, 12);
|
||||
Arg outputArgs[13];
|
||||
|
||||
XtSetArg(outputArgs[0], XmNeditable, False);
|
||||
XtSetArg(outputArgs[1], XmNeditMode, XmMULTI_LINE_EDIT);
|
||||
XtSetArg(outputArgs[2], XmNscrollHorizontal, False);
|
||||
XtSetArg(outputArgs[3], XmNwordWrap, True);
|
||||
XtSetArg(outputArgs[4], XmNtopAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(outputArgs[5], XmNtopPosition, 0);
|
||||
XtSetArg(outputArgs[6], XmNbottomAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(outputArgs[7], XmNbottomPosition, 5);
|
||||
XtSetArg(outputArgs[8], XmNleftAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(outputArgs[9], XmNleftPosition, 0);
|
||||
XtSetArg(outputArgs[10], XmNrightAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(outputArgs[11], XmNrightPosition, 4);
|
||||
XtSetArg(outputArgs[12], XmNcursorPositionVisible, False);
|
||||
outputArea = XmCreateScrolledText(userForm, "output", outputArgs, 13);
|
||||
|
||||
if (outputArea == NULL)
|
||||
perror("outputArea: ");
|
||||
XtManageChild(outputArea);
|
||||
}
|
||||
|
||||
/* user list at left */
|
||||
{
|
||||
Arg args[9];
|
||||
|
||||
XtSetArg(args[0], XmNtopAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[1], XmNtopPosition, 0);
|
||||
XtSetArg(args[2], XmNbottomAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[3], XmNbottomPosition, 5);
|
||||
XtSetArg(args[4], XmNleftAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[5], XmNleftPosition, 4);
|
||||
XtSetArg(args[6], XmNrightAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(args[7], XmNrightPosition, 5);
|
||||
XtSetArg(args[8], XmNselectionPolicy, XmSINGLE_SELECT);
|
||||
userList = XmCreateScrolledList(userForm, "list", args, 9);
|
||||
Arg ulistArgs[9];
|
||||
|
||||
XtSetArg(ulistArgs[0], XmNtopAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(ulistArgs[1], XmNtopPosition, 0);
|
||||
XtSetArg(ulistArgs[2], XmNbottomAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(ulistArgs[3], XmNbottomPosition, 5);
|
||||
XtSetArg(ulistArgs[4], XmNleftAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(ulistArgs[5], XmNleftPosition, 4);
|
||||
XtSetArg(ulistArgs[6], XmNrightAttachment, XmATTACH_POSITION);
|
||||
XtSetArg(ulistArgs[7], XmNrightPosition, 5);
|
||||
XtSetArg(ulistArgs[8], XmNselectionPolicy, XmSINGLE_SELECT);
|
||||
userList = XmCreateScrolledList(userForm, "list", ulistArgs, 9);
|
||||
XtAddCallback(userList, XmNsingleSelectionCallback, userListSelectCbk, NULL);
|
||||
XtManageChild(userList);
|
||||
}
|
||||
|
||||
XtManageChild(userForm);
|
||||
XtManageChild(mainForm);
|
||||
|
||||
/* Command line area */
|
||||
commandInput = XtVaCreateWidget("command",
|
||||
|
||||
inputArea = XtVaCreateWidget("input",
|
||||
xmTextFieldWidgetClass, mainWindow,
|
||||
XmNmaxLength, MAX_INPUT_LEN,
|
||||
NULL);
|
||||
XtAddCallback(commandInput, XmNactivateCallback, commandInputCall, NULL);
|
||||
XtManageChild(commandInput);
|
||||
XtAddCallback(inputArea, XmNactivateCallback, inputAreaCall, NULL);
|
||||
XtManageChild(inputArea);
|
||||
|
||||
XtVaSetValues(mainWindow,
|
||||
XmNmenuBar, menuBar,
|
||||
XmNworkWindow, mainForm,
|
||||
XmNcommandWindow, commandInput,
|
||||
XmNcommandWindow, inputArea,
|
||||
NULL);
|
||||
|
||||
XtManageChild(mainWindow);
|
||||
@ -279,7 +174,7 @@ int main (int argc, char *argv[])
|
||||
|
||||
/* set focus to input area */
|
||||
/* For Motif 1.0 we should use _XmGrabTheFocus(target) according to FAQ */
|
||||
XmProcessTraversal(commandInput, XmTRAVERSE_CURRENT);
|
||||
XmProcessTraversal(inputArea, XmTRAVERSE_CURRENT);
|
||||
|
||||
/* initialize hostname and system info */
|
||||
/* should switch back to ARCHOS if uname not available */
|
||||
@ -405,14 +300,10 @@ void userListSelectCbk(Widget w, XtPointer data, XtPointer callData)
|
||||
XmStringGetLtoR(listCbs->item, XmFONTLIST_DEFAULT_TAG, &selectedUser);
|
||||
}
|
||||
|
||||
void commandInputCall()
|
||||
void inputAreaCall()
|
||||
{
|
||||
char *command;
|
||||
|
||||
command = XmTextGetString(commandInput);
|
||||
interpretCommand(command);
|
||||
XmTextSetString(commandInput,"");
|
||||
XtFree(command);
|
||||
interpretCommand(XmTextGetString(inputArea));
|
||||
XmTextSetString(inputArea,"");
|
||||
}
|
||||
|
||||
void quitApplication()
|
||||
@ -432,3 +323,4 @@ void appendText(char *msg)
|
||||
lastPos = XmTextGetLastPosition(outputArea);
|
||||
XmTextSetInsertionPosition(outputArea, lastPos);
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
38
src/main.h
38
src/main.h
@ -2,44 +2,8 @@
|
||||
* main.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <netdb.h> /* for MAXHOSTNAMELEN */
|
||||
#include <sys/param.h> /* for MAXHOSTNAMELEN on other systems */
|
||||
|
||||
@ -47,6 +11,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#define CLIENT_NAME "Nebula IRC"
|
||||
#define CLIENT_VERSION PACKAGE_VERSION
|
||||
#include "config.h"
|
||||
|
||||
#define SYSINFO_LEN 128
|
||||
#define MAX_COMMAND_LEN 1024
|
||||
@ -108,3 +73,4 @@ void appendText(char *msg);
|
||||
#define XM_STRING_GEN_COMP(str)\
|
||||
XmStringCreateLtoR(str, XmFONTLIST_DEFAULT_TAG);
|
||||
#endif
|
||||
#include "copyright.h"
|
||||
|
@ -2,42 +2,8 @@
|
||||
* network.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the abov copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
@ -461,3 +427,4 @@ void doCTCPAction(char *recipient, char *message)
|
||||
sprintf(localEcho, "[%s] %s\n", sysState.myNick, message);
|
||||
appendText(localEcho);
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
@ -2,42 +2,8 @@
|
||||
* network.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
int connectToServer(char *servName, int port);
|
||||
void disconnectFromServer();
|
||||
@ -54,3 +20,4 @@ void doMode (char *recipient, char *option, char *limit, char *user, char *banma
|
||||
void doWhois(char *nick);
|
||||
void doCTCPVersion (char *recipient);
|
||||
void doCTCPAction(char *recipient, char *message);
|
||||
#include "copyright.h"
|
||||
|
@ -2,43 +2,8 @@
|
||||
* preferences.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
@ -408,3 +373,4 @@ char* getPreferencesFilePath()
|
||||
}
|
||||
return filePath;
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
@ -2,43 +2,10 @@
|
||||
* preferences.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004-2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
void getStartupPrefs(Widget mainWin);
|
||||
void setPreferences(Widget mainWin);
|
||||
char* getPreferencesFilePath();
|
||||
#include "copyright.h"
|
||||
|
@ -2,43 +2,8 @@
|
||||
* signals.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
@ -69,3 +34,4 @@ RETSIGTYPE brokenPipe()
|
||||
sysState.isAuthenticated = NO;
|
||||
}
|
||||
|
||||
#include "copyright.h"
|
||||
|
@ -2,43 +2,7 @@
|
||||
* signals.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2004 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2004-2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
RETSIGTYPE brokenPipe();
|
||||
#include "copyright.h"
|
||||
|
@ -2,43 +2,8 @@
|
||||
* userlist.c *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <Xm/Xm.h>
|
||||
#include <Xm/List.h>
|
||||
|
||||
@ -80,3 +45,4 @@ void removeAllUsersFromList(Widget listWidget)
|
||||
{
|
||||
XmListDeleteAllItems(listWidget);
|
||||
}
|
||||
#include "copyright.h"
|
||||
|
@ -2,46 +2,12 @@
|
||||
* userlist.h *
|
||||
* --------------------------------------------------------------------- *
|
||||
* This file is part of the nebula irc client *
|
||||
* http://nebula-irc.sourceforge.net *
|
||||
|
||||
* Copyright (c) 2005 Riccardo Mottola. All rights reserved. *
|
||||
* mail: rmottola@users.sourceforge.net *
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
Copyright (c) 2005, Riccardo Mottola
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
Neither the name of "Riccardo Mottola" nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS;´OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <Xm/Xm.h>
|
||||
|
||||
void addUserToList(char *nick, Widget listWidget);
|
||||
void removeUserFromList(char *nick, Widget listWidget);
|
||||
void renameUserInList(char *oldNick, char *newNick, Widget listWidget);
|
||||
void removeAllUsersFromList(Widget listWidget);
|
||||
#include "copyright.h"
|
||||
|
Loading…
Reference in New Issue
Block a user