1. 使用 Qt 的 windeployqt.exe 工具 (在 C:\Qt\Qt5.14.1\5.14.1\msvc2017\bin\)。
a. 把執行檔 myProgram.exe 放在某個資料夾。
b. 在檔案總管這個資料夾按 Shift 和滑鼠右鍵,開啟 Power Shell。
1. 使用 Qt 的 windeployqt.exe 工具 (在 C:\Qt\Qt5.14.1\5.14.1\msvc2017\bin\)。
a. 把執行檔 myProgram.exe 放在某個資料夾。
b. 在檔案總管這個資料夾按 Shift 和滑鼠右鍵,開啟 Power Shell。
1. 在專案中加入 .rc 文字檔, 例如:res.rc,內容如下:
IDI_ICON ICON DISCARDABLE ".\\image\\icon\\a.ico"
.rc 的檔名可以改變,不一定要用 res.rc, 可以使用不同的檔名, 例如 resA.rc。
但專案中只可以有一個 .rc.
簡單說:修改 phpMyAdmin 的設定檔[config.inc.php]內容:
在檔案後面加入
port: $cfg['Servers'][$i]['port'] = '3307'; socket: $cfg['Servers'][$i]['socket'] = '/var/run/mariadb10.sock';
注意事項:
即使查了很多網頁,還是不知道什麼原因, 在 Xcode 專案無法直接連接到自己架設的 GitLab。
偶然間發現,在 Xcode 專案中引用一個檔案件(ex: FileHasGit.cpp),有使用 GitLab 管理,而在 Xcode 裏的 Source Control 自動把和這個檔案有關的 GitLab 資訊加進 Repositories。
這引發了我的實驗精神,終於發現,在隱藏目錄 .git 裏的 config 檔存著 remote Repositories 的訊息。把這個檔案裏的 url 修改為自架 GitLab 裏的 url,例如:
[core]
bare = false
repositoryformatversion = 0
filemode = true
ignorecase = true
precomposeunicode = true
logallrefupdates = true
[remote "origin"]
url = http://192.168.0.1:10081/Proj1.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
merge = refs/heads/main
即可在 Xcode 裏 push 和 pull 自架 GitLab 的專案。
[Reference]
欄位定義紀錄的定義如下:
位元 | 長度 | 資料型態 | 說明 |
0-10 | 11 | char[11] | 欄位名稱 |
11 | 1 | char | 資料類型 (見下表說明) |
12-15 | 4 | 保留未用,填0 | |
16 | 1 | 欄位長度(二進位) | |
17 | 1 | 欄位數值值精度(二進位) | |
18-19 | 2 | 保留未用,填0 | |
20 | 1 | 工作區ID | |
21-30 | 10 | 保留未用,填0 | |
31 | 1 | MDX記號 |
資料類型
代號 | 說明 | 允許輸入的資料 |
B | 二進位值 | 文字(?) |
C | 文字 | 文字 |
D | 日期 | YYYYMMDD |
G | 通用 | 文字 |
N | 數值 | -.0123456789 |
L | 邏輯 | ?YyNnTtFf(?表示沒有初始化) |
M | Memo | 文字 |
每一筆資料前的控制字元,0x20表示沒有刪除,0x2A表示被刪除。
檔案長度計算:
假設檔案有 4個欄位,長度分別為 12, 14, 16, 18,並有 10 筆資料。
檔頭長度:32 + 32*4 = 160
分隔字元(0x0D):1
資料區:
每筆資料:1 + 12 + 14 + 16 + 18 = 61 (含前面的控制字元)
10筆資料:61*10 = 610
結尾字元(0x1A):1
總檔案長度: 160 + 1 + 610 + 1 = 772
[Reference]
https://stackoverflow.com/questions/35229149/interacting-with-c-classes-from-swift
https://stackoverflow.com/questions/2045774/developing-c-wrapper-api-for-object-oriented-c-code/2045860
Swift can not call C++ code directly. C++ code must be wrapped by C, Objective-C or Objective-C++. Swift uses the wrapper (wrapped code) to call C++ code. According to the references, an example is shown as the following:
C++ header (MPoint3.hpp)#pragma once
class MPoint3
{
public:
double x;
double y;
double z;
};
C wrapper header (MPoint3C.h)
#ifndef MPoint3C_h
#define MPoint3C_h
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
double x;
double y;
double z;
} MPoint3C;
MPoint3C* MPoint3_Constructor(void);
void MPoint3_Destructor(MPoint3C*);
#ifdef __cplusplus
}
#endif
#endif
C++ source (MPoint3C.cpp)
#include "MPoint3.hpp"
#include "MPoint3C.h"
#ifdef __cplusplus
extern "C" {
#endif
MPoint3C* MPoint3_Constructor(void)
{
return (MPoint3C*) new MPoint3;
}
void MPoint3_Destructor(MPoint3C* ppt)
{
delete (MPoint3*)ppt;
}
#ifdef __cplusplus
}
#endif
Use in Swift (swift.swift)
let pPt = MPoint3_Constructor() // The type of pPt is UnsafeMutablePointer<MPoint3C>
pPt.pointee.x = 10
pPt.pointee.y = 11
pPt.pointee.z = 12
MPoint3_Destructor(pPt)
1. 使用 Qt 的 windeployqt.exe 工具 (在 C:\Qt\Qt5.14.1\5.14.1\msvc2017\bin\)。 a. 把執行檔 myProgram.exe 放在某個資料夾。 b. 在檔案總管這個資料夾按 Shift 和滑鼠右鍵,開啟 Po...