Changeset 80 in dev for ProjectEditor/Common.h


Ignore:
Timestamp:
Mar 26, 2007, 6:33:06 AM (17 years ago)
Author:
dai_9181
Message:

TheText用のリソースを追加。
単語単位での検索を可能にした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ProjectEditor/Common.h

    r79 r80  
    1414#include <process.h>
    1515#include <wininet.h>
     16
     17#include <vector>
     18#include <string>
     19#include <fstream>
     20
     21using namespace std;
     22
    1623#include "nkf_class.h"
    1724#include "WebSearch.h"
     
    706713
    707714class CSettingFile{
    708     BOOL GetDataLine(char *name,char *parms);
     715    BOOL GetDataLine(const char *name,char *parms);
    709716protected:
    710717    char *buffer;
    711718
    712     BOOL GetWholeValue(char *name,int *pi32data);
     719    BOOL GetWholeValue(const char *name,int *pi32data);
     720    bool GetBoolean( const char *name,bool &b );
    713721    BOOL Get3WholeValue(char *name,int *pd1,int *pd2,int *pd3);
    714722    BOOL GetRGBValue(char *name,COLORREF *prgb);
     
    718726    BOOL GetRebarBand(SAVEREBAR *psr,int num);
    719727
    720     void SetWholeValue(char *name,long i32data);
     728    void SetWholeValue( const char *name,long i32data);
     729    void SetBoolean( const char *name,bool b);
    721730    void Set3WholeValue(char *name,long d1,long d2,long d3);
    722731    void SetRGBValue(char *name,COLORREF rgb);
     
    775784void GetRelationalPath(char *path,char *dir);
    776785void GetFullPath(char *path,char *dir);
    777 void RemoveDirectoryStrong(const char *dir_path);
     786void RemoveDirectoryStrong(const char *dirPath);
    778787BOOL GetFilePathDialog(HWND hwnd,char *filename,LPSTR Filter,LPSTR Title,_int8 IsOpen);
    779788BOOL GetFolder(HWND hWnd,char *folder,char *OpenFolderTitle);
     
    838847BOOL IsCommandBackDelimitation(char *buffer,int pos);
    839848BOOL IsCommandDelimitation(char *buffer,int p);
    840 char *ComparisonString(char *str1,char *str2,BOOL bBigSmall);
     849char *ComparisonString( char *str1, char *str2, bool isBigSmall, bool isWordUnit );
    841850int GetOneParameter(char *Parameter,int pos,char *retAns);
    842851int GetStringInPare(char *buffer,char *ReadBuffer);
     
    862871BOOL SetRunning(HWND hChild);
    863872BOOL IsNeedCompile(char *FileName,BOOL bDebug);
     873string GetLastErrorString();
    864874
    865875//DocumentAdvice.cpp
Note: See TracChangeset for help on using the changeset viewer.