mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	Updates to User's Guide. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3501 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifdef QT5
 | 
						|
#include <QtWidgets>
 | 
						|
#else
 | 
						|
#include <QtGui>
 | 
						|
#endif
 | 
						|
#include <QApplication>
 | 
						|
#include <portaudio.h>
 | 
						|
#include "mainwindow.h"
 | 
						|
 | 
						|
// Multiple instances:
 | 
						|
QSharedMemory mem_jt9;
 | 
						|
QUuid         my_uuid;
 | 
						|
QString       my_key;
 | 
						|
 | 
						|
int main(int argc, char *argv[])
 | 
						|
{
 | 
						|
  QApplication a(argc, argv);
 | 
						|
 | 
						|
  QFile f("fonts.txt");
 | 
						|
  qint32 fontSize,fontWeight,fontSize2,fontWeight2;   // Defaults 8 50 10 50
 | 
						|
  fontSize2=10;
 | 
						|
  fontWeight2=50;
 | 
						|
  if(f.open(QIODevice::ReadOnly)) {
 | 
						|
     QTextStream in(&f);
 | 
						|
     in >> fontSize >> fontWeight >> fontSize2 >> fontWeight2;
 | 
						|
     f.close();
 | 
						|
     QFont font=a.font();
 | 
						|
     if(fontSize!=8) font.setPointSize(fontSize);
 | 
						|
     font.setWeight(fontWeight);                       //Set the GUI fonts
 | 
						|
     a.setFont(font);
 | 
						|
  }
 | 
						|
 | 
						|
  // Create and initialize shared memory segment
 | 
						|
  // Multiple instances: generate shared memory keys with UUID
 | 
						|
  my_uuid = QUuid::createUuid();
 | 
						|
  my_key = my_uuid.toString();
 | 
						|
  mem_jt9.setKey(my_key);
 | 
						|
 | 
						|
  if(!mem_jt9.attach()) {
 | 
						|
    if (!mem_jt9.create(sizeof(jt9com_))) {
 | 
						|
      QMessageBox::critical( 0, "Error", "Unable to create shared memory segment.");
 | 
						|
      exit(1);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  char *to = (char*)mem_jt9.data();
 | 
						|
  int size=sizeof(jt9com_);
 | 
						|
  if(jt9com_.newdat==0) {
 | 
						|
  }
 | 
						|
  memset(to,0,size);         //Zero all decoding params in shared memory
 | 
						|
 | 
						|
  //Initialize Portaudio
 | 
						|
  PaError paerr=Pa_Initialize();
 | 
						|
  if(paerr!=paNoError) {
 | 
						|
    QMessageBox::critical( 0, "Error", "Unable to initialize PortAudio.");
 | 
						|
    exit(1);
 | 
						|
  }
 | 
						|
 | 
						|
// Multiple instances:  Call MainWindow() with the UUID key
 | 
						|
  MainWindow w(&mem_jt9, &my_key, fontSize2, fontWeight2);
 | 
						|
  w.show();
 | 
						|
  return a.exec();
 | 
						|
}
 |