笑看风云淡

宠辱不惊,看庭前花开花落;去留无意,望天空云卷云舒
posts - 96, comments - 48, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 ::  :: 聚合  :: 管理

在文档窗口创建的时候 ,它缺省总是会新建一个新文档 , 那么怎么让它不新建文档呢?就这个问题 , 我对文档视图窗口应用程序启动时的文档创建机制 , 稍稍的浅浅挖了一下 , 做了一个详细的分析 , 希望能够对初学者有所帮助 .

App文件的InitInstance()函数中, 有如下几行代码:
CCommandLineInfo  cmdInfo;
ParseCommandLine(cmdInfo);

          if (!ProcessShellCommand(cmdInfo)) return FALSE;

几行代码是程序启动时创建新文档的关键代码 .

 

1: 我们首先来看看让CCommandLineInfo类是个什么东西:( 部分源代码 )

//in afxwin.h

 class CCommandLineInfo : public CObject

{

    public:

    // Sets default values

   CCommandLineInfo();

   BOOL m_bShowSplash;

   BOOL m_bRunEmbedded;

   BOOL m_bRunAutomated;

 

   enum { FileNew, FileOpen, FilePrint, FilePrintTo, FileDDE, AppRegister,

   AppUnregister, FileNothing = -1 } m_nShellCommand;

 

 // not valid for FileNew

 CString m_strFileName;

   . . .

   ~CCommandLineInfo();

   . . .

 };

  这里要重点注意enum {FileNew, . . . , FileNothing = -1 }m_nShellCommand;

这里联合类型定义的m_nShellCommand 就是外壳程序执行的命令类型 , 如果m_nShellCommand设置为FileNew ,那么程序就会创建新文档 . 如果想在文档开始时不创建新文档 , 就必须将m_nShellCommand设置为FilleNothing .

下面我们再看看CCommandLineInfo的构造函数 .

//in appcore.cpp

 CCommandLineInfo::CCommandLineInfo()

 {

        m_bShowSplash   = TRUE;

        m_bRunEmbedded  = FALSE;

        m_bRunAutomated = FALSE;

        m_nShellCommand = FileNew;

 }

这里很明白的看出 , 构造函数中 , 缺省将 m_nShellCommand设置为 FileNew .

 

2:再来看看ParseCommandLine(cmdInfo); 函数 .

 

void CWinApp::ParseCommandLine(CCommandLineInfo& rCmdInfo)

{

    for (int i = 1; i < __argc; i++)

    {

        LPCTSTR pszParam = __targv[i];

        BOOL bFlag = FALSE;

        BOOL bLast = ((i + 1) == __argc);

        if (pszParam[0] == '-' || pszParam[0] == '/')

        {

            // remove flag specifier

            bFlag = TRUE;

            ++pszParam;

        }

        rCmdInfo.ParseParam(pszParam, bFlag, bLast);

    }

}

可以看出ParseCommandLine主要是对输入的命令行参数做一些分析 , 并调用ParseParam来进行处理 .继续分析 ParseParam函数 , 查看如下源代码:

void CCommandLineInfo::ParseParam(const TCHAR* pszParam,BOOL bFlag,BOOL bLast)

{

    if (bFlag)

    {

        USES_CONVERSION;

        ParseParamFlag(T2CA(pszParam));

    }

    else

        ParseParamNotFlag(pszParam);

 

    ParseLast(bLast);

}

其它的函数撇开不看 , 我们重点来分析一下ParseParamFlag()和ParseLast()函数 .

void CCommandLineInfo::ParseParamFlag(const char* pszParam)

{

    // OLE command switches are case insensitive, while

    // shell command switches are case sensitive

 

    if (lstrcmpA(pszParam, "pt") == 0)

        m_nShellCommand = FilePrintTo;

    else if (lstrcmpA(pszParam, "p") == 0)

        m_nShellCommand = FilePrint;

    else if (lstrcmpiA(pszParam, "Unregister") == 0 ||

             lstrcmpiA(pszParam, "Unregserver") == 0)

        m_nShellCommand = AppUnregister;

    else if (lstrcmpA(pszParam, "dde") == 0)

    {

        AfxOleSetUserCtrl(FALSE);

        m_nShellCommand = FileDDE;

    }

    else if (lstrcmpiA(pszParam, "Embedding") == 0)

    {

        AfxOleSetUserCtrl(FALSE);

        m_bRunEmbedded = TRUE;

        m_bShowSplash = FALSE;

    }

    else if (lstrcmpiA(pszParam, "Automation") == 0)

    {

        AfxOleSetUserCtrl(FALSE);

        m_bRunAutomated = TRUE;

        m_bShowSplash = FALSE;

    }

}

ParseParamFlag判断传过来的字符串 ,判断它的参数类型 , 并根据参数类型做不同的处理 .

void CCommandLineInfo::ParseLast(BOOL bLast)

{

    if (bLast)

    {

        if (m_nShellCommand == FileNew && !m_strFileName.IsEmpty())

            m_nShellCommand = FileOpen;

        m_bShowSplash = !m_bRunEmbedded && !m_bRunAutomated;

    }

}

ParseLast会判断是否是是FileNew打开新文档 , 如果是打开新文档 , 并且打开的文档名不为空的话, 就假定用户想打开这个文档 , 把命令设置为FileOpen .


最后 , 我们可以总结一下ParseCommandLine的作用 . ParseCommandLine的作用主要是
分析命令行参数,如果没有命令行参数 ParseCommandLine()就假定用户想新建一个文档,于是设置一个FileNew命令,如果命令行参数中有一个文件名,ParseCommandLine()就假定用户想打开该文件,于是设置一个FileOpen命令。

 

3: 最后 , 我们来重点看看外壳命令解析的主角 : ProcessShellCommand ();(部分源代码)

BOOL CWinApp::ProcessShellCommand(CCommandLineInfo& rCmdInfo)

 {

      BOOL bResult = TRUE;

      switch (rCmdInfo.m_nShellCommand)

     {

          case CCommandLineInfo::FileNew:

                  if (!AfxGetApp()->OnCmdMsg(ID_FILE_NEW, 0, NULL, NULL))

                         OnFileNew();

                  if (m_pMainWnd == NULL)

                         bResult = FALSE;

                  break;

        case CCommandLineInfo::FileOpen:      . . .

        case CCommandLineInfo::FilePrintTo:    . . .

        case CCommandLineInfo::FilePrint:      . . .

        case CCommandLineInfo::FileDDE:       . . .

        case CCommandLineInfo::AppRegister:   . . .

        case CCommandLineInfo::AppUnregister: . . .

        . . .

      }

}

代码看到这里 , 一切都很明白了 . ProcessShellCommand分析m_nShellCommand ,并根据m_nShellCommand不同的类型值进行不同的处理 .

再来分析下面两行代码:


        
CCommandLineInfo cmdInfo;

         ParseCommandLine(cmdInfo);

       if (!ProcessShellCommand(cmdInfo)) return FALSE;


  
1: 当CCommandLineInfo cmdInfo进行定义时 , 首先调用构造函数 , 构造函数中m_nShellCommand被设置为FileNew
 
2: 然后执行ParseCommandLine(cmdInfo);对命令进行分析 .

  3: 最后执行ProcessShellCommand (cmdInfo) , ProcessShellCommand ()判断m_nShellCommand为FileNew , 于是调用OnFileNew()创建了一个新的文档 .

   这也就是创建新文档的来龙去脉 .

 

最后, 我们看怎么样解决不想在应用程序启动时的创建新文档的问题:

直接在InitInstance()函数中用如下代码代替原来的几行即可:

CCommandLineInfo cmdInfo;
cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
ParseCommandLine(cmdInfo);

       if (!ProcessShellCommand(cmdInfo)) return FALSE;

Feedback

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2008-08-04 22:10 by 过客
好,挺详细的

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2008-08-29 10:41 by feht1@yahoo.com.cn
这个方法对多文档项目有效
单文档项目会挂掉, 还需要做其它处理(咋办咧? 探索中....)

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2008-09-01 08:48 by 天之骄子
单文档也是可以的吧,我以前试过

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2008-10-22 19:23 by 无语
单文档也不可以!!!
测试通不过!可能还有其他原因!

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2008-10-30 09:33 by 真理
说的挺好,又学了一招。可以用它来创建快捷方式呢!

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2009-03-04 21:42 by 飘过
呵呵 多谢了

# re: 如何让DOC/VIEW框架不创建新文档  回复  更多评论   

2009-04-17 16:46 by blueengine@csdn.net
对于SDI程序,可以在ParseCommandLine()之后ProcessShellCommand()之前加入cmdInfo.m_nShellCommand = cmdInfo.FileNew;即可。代码如下:


// Parse command line for standard shell commands, DDE, file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
cmdInfo.m_nShellCommand = cmdInfo.FileNew;

// Dispatch commands specified on the command line
m_nCmdShow = SW_HIDE; //enforce the main window hide
if (!ProcessShellCommand(cmdInfo))
return FALSE;

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理