This commit is contained in:
rods 1998-06-04 18:12:10 +00:00
Родитель ca10010436
Коммит a76dffca3c
4 изменённых файлов: 97 добавлений и 21 удалений

Просмотреть файл

@ -20,6 +20,7 @@ DEPTH=../..
DEFINES = -D_IMPL_NS_UI DEFINES = -D_IMPL_NS_UI
EXPORTS = \ EXPORTS = \
nsStringUtil.h \
nsui.h \ nsui.h \
nsITabWidget.h \ nsITabWidget.h \
nsIWidget.h \ nsIWidget.h \

Просмотреть файл

@ -26,7 +26,7 @@ EXPORTS=nsui.h nsIWidget.h nsIButton.h nsICheckButton.h nsIListWidget.h \
nsIListBox.h nsIFileWidget.h nsIScrollbar.h nsGUIEvent.h \ nsIListBox.h nsIFileWidget.h nsIScrollbar.h nsGUIEvent.h \
nsIRadioButton.h nsIRadioGroup.h nsIMouseListener.h \ nsIRadioButton.h nsIRadioGroup.h nsIMouseListener.h \
nsIEventListener.h nsIToolkit.h nsWidgetsCID.h nsITabWidget.h \ nsIEventListener.h nsIToolkit.h nsWidgetsCID.h nsITabWidget.h \
nsITooltipWidget.h nsIAppShell.h nsITooltipWidget.h nsIAppShell.h nsStringUtil.h
include <$(DEPTH)\config\rules.mak> include <$(DEPTH)\config\rules.mak>

Просмотреть файл

@ -21,22 +21,17 @@
#include "nsString.h" #include "nsString.h"
/**
* Flags for the getNativeData function.
* See GetNativeData()
*/
#define NS_NATIVE_SHELL 0
#define NS_IAPPSHELL_IID \ #define NS_IAPPSHELL_IID \
{ 0xa0757c31, 0xeeac, 0x11d1, { 0x9e, 0xc1, 0x0, 0xaa, 0x0, 0x2f, 0xb8, 0x21 } }; { 0xa0757c31, 0xeeac, 0x11d1, { 0x9e, 0xc1, 0x0, 0xaa, 0x0, 0x2f, 0xb8, 0x21 } };
/**
* During the nsIAppShell Run method notify this listener
* after each message dispatch.
* @see SetDispatchListener member function of nsIAppShell
*/
class nsDispatchListener {
public:
virtual void AfterDispatch() = 0;
};
/** /**
* Application shell used for Test applications * Application shell used for Test applications
*/ */
@ -50,7 +45,7 @@ public:
* Creates an application shell * Creates an application shell
*/ */
virtual void Create() = 0; virtual void Create(int* argc, char ** argv) = 0;
/** /**
* Enter an event loop. * Enter an event loop.
@ -59,18 +54,19 @@ public:
virtual nsresult Run() = 0; virtual nsresult Run() = 0;
/**
* After event dispatch execute app specific code
*/
virtual void SetDispatchListener(nsDispatchListener* aDispatchListener) = 0;
/** /**
* Exit the handle event loop * Exit the handle event loop
*/ */
virtual void Exit() = 0; virtual void Exit() = 0;
/**
* Returns the Native Data
*/
virtual void* GetNativeData(PRUint32 aDataType) = 0;
}; };
#endif // nsIAppShell_h__ #endif // nsIAppShell_h__

Просмотреть файл

@ -0,0 +1,79 @@
/* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
/*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
// Convience macros for converting nsString's to chars +
// creating temporary char[] bufs.
#ifndef NS_STR_UTIL_H
#define NS_STR_UTIL_H
// nsString to temporary char[] macro
// Convience MACROS to convert an nsString to a char * which use a
// static char array if possible to reduce memory fragmentation,
// otherwise they allocate a char[] which must be freed.
// REMEMBER to always use the NS_FREE_STR_BUF after using the
// NS_ALLOC_STR_BUF. You can not nest NS_ALLOC_STR_BUF's.
#define NS_ALLOC_STR_BUF(varName, strName, tempSize) \
static const int _ns_kSmallBufferSize = tempSize; \
char* varName = 0; \
int _ns_smallBufUsed = 0; \
char _ns_smallBuffer[_ns_kSmallBufferSize]; \
if (strName.Length() < (_ns_kSmallBufferSize - 1)) { \
strName.ToCString(_ns_smallBuffer, _ns_kSmallBufferSize); \
_ns_smallBuffer[_ns_kSmallBufferSize - 1] = '\0'; \
_ns_smallBufUsed = 1; \
varName = _ns_smallBuffer; \
} \
else { \
varName = strName.ToNewCString(); \
}
#define NS_FREE_STR_BUF(varName) \
if (! _ns_smallBufUsed) \
delete varName;
// Create temporary char[] macro
//
// Create a temporary buffer for storing chars.
// If the actual size is > size then the buffer
// is allocated from the heap, otherwise the buffer
// is a stack variable. REMEMBER: use NS_FREE_BUF
// when finished with the buffer allocated, and do
// NOT nest INSERT_BUF'S.
#define NS_ALLOC_CHAR_BUF(aBuf, aSize, aActualSize) \
char *aBuf; \
int _ns_smallBufUsed = 0; \
static const int _ns_kSmallBufferSize = aSize; \
if (aActualSize < _ns_kSmallBufferSize) { \
char _ns_smallBuffer[_ns_kSmallBufferSize]; \
aBuf = _ns_smallBuffer; \
_ns_smallBufUsed = 1; \
} \
else { \
aBuf = new char[aActualSize]; \
}
#define NS_FREE_CHAR_BUF(aBuf) \
if (! _ns_smallBufUsed) \
delete aBuf;
#endif // NSStringUtil