SendKeys не работает с предопределенным LPSTR. - PullRequest
1 голос
/ 27 февраля 2012

У меня есть QTimer, подключенный к функции TimerHandler.TimerHandler должен выполнять мою SendKeys функцию, которую я объявил в публичной части моего заголовка.Если я вручную наберу текст для функции SendKeys, это даст правильный вывод.Но если я передаю текст из предопределенного LPSTR, он выводит мусор.Вот мой код:

MyProject.h

#ifndef MYPROJECT_H
#define MYPROJECT_H

#include <QtGui/QMainWindow>
#include "ui_myproject.h"
#include <qtimer.h>
#include <qmessagebox.h>
#include <Windows.h>

class MyProject : public QMainWindow
{
    Q_OBJECT

public:
    MyClass(QWidget *parent = 0, Qt::WFlags flags = 0);
    Ui::MyProjectClass ui;
    QTimer* SpamTimer;

    void SendText(char* message, int size)
    {
        int lc=0;
        do{
        keybd_event(VkKeyScan(message[lc]),0,KEYEVENTF_EXTENDEDKEY,0);
        keybd_event(VkKeyScan(message[lc]),0,KEYEVENTF_KEYUP,0);
        lc=lc+1;
        }while(lc<size);
        keybd_event(VK_RETURN,0,KEYEVENTF_EXTENDEDKEY,0);
        keybd_event(VK_RETURN,0,KEYEVENTF_KEYUP,0);
    }

public slots:
    void StartBTNClick();
    void StopBTNClick();
    void TimerHandler();
};
#endif // MYPROJECT_H

MyProject.cpp

#include "MyProject.h"

LPSTR txtMessage; // Message for SendKeys function.
int buffer;
bool TimerEnabled = 0;

MyClass::MainWindow(QWidget *parent, Qt::WFlags flags) // Intializing MainWindow
    : QMainWindow(parent, flags)
{
    ui.setupUi(this);
    statusBar()->showMessage("Status: Idle.");
    connect(ui.StartBTN, SIGNAL(clicked()), this, SLOT(StartBTNClick()));
    connect(ui.StopBTN, SIGNAL(clicked()), this, SLOT(StopBTNClick()));
}

void MyClass::StartBTNClick() // Starts the timer.
{
    int delay; // delay for QTimer
    bool ok;
    std::string convertme;

    QString TextMSG = ui.TextBox->text(); // Get text from 'line edit' for txtMessage.
    QString TimeMSG = ui.TimeBox->text(); // Get text from 2nd 'line edit' for delay.
    convertme = TextMSG.toStdString();
    txtMessage = const_cast<char*> (convertme.c_str()); // converted QString to LPSTR.
    buffer = strlen(txtMessage);
    delay = TimeMSG.toInt(&ok, 10); // converted QString to int.
    if (delay > 0)
    {
        QtTimer = new QTimer(this);
        connect(QtTimer, SIGNAL(timeout()), this, SLOT(TimerHandler()));
        TimerEnabled = 1;
        QtTimer->start(delay);
        statusBar()->showMessage("Status: Running.");
    }
    else if (delay < 0)
    {
        QMessageBox::warning(this, "Warning!", "Delay can't be \"0\" or lower than \"0\"!");
    }
    else
    {
        QMessageBox::warning(this, "Warning!", "Delay was not specified properly.");
    }
}

void MyClass::StopBTNClick() // Stops the timer.
{
    if (TimerEnabled == 1)
    {
        QtTimer->stop();
        disconnect(QtTimer, SIGNAL(timeout()), this, SLOT(TimerHandler()));
        TimerEnabled = 0;
        statusBar()->showMessage("Status: Idle.");
    }
}

void MyClass::TimerHandler() // Timer handles the SendKeys function
{
    SendText(txtMessage, buffer);
}

Это заставляет мой таймер выводить мусор вместо текста внутри txtMessage.Если вместо этого я использую

SendText("test message", strlen("test message"));

, сообщение выводится правильно.Что-то не так с моим кодом?

Я пытался объявить LPSTR txtMessage в своем классе в открытом разделе на MyProject.h, но это также не сработало.

1 Ответ

1 голос
/ 27 февраля 2012

Создайте txtMessage string объект (std::string или QString, поскольку вы используете Qt), а не указатель. Получите указатель от этого объекта прямо перед вызовом SendText или, что еще проще, просто заставьте SendText взять строковый объект вместо указателя.

void SendText(const QString& str)
{
  const char* message = str.c_str();
  // whatever else you want to do
}

Проблема в том, что вы храните указатель на данные во временном объекте (convertme). Этот объект выходит из области видимости и уничтожается, а память перезаписывается. Причина, по которой он работает с `" тестовым сообщением ", заключается в том, что строковые литералы хранятся по-разному . Вам нужно постоянно хранить в памяти сообщение, которое вы пытаетесь сохранить.

...